-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 978 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "temple-five-dawns",
"version": "1.0.0",
"homepage": "https://temple-five-dawns.vercel.app",
"private": true,
"author": {
"name": "alexzedim"
},
"repository": {
"type": "git",
"url": "https://github.com/alexzedim/temple-five-dawns.git"
},
"languageName": "next",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"next": "15.0.7",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"gray-matter": "^4.0.3",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"date-fns": "^3.6.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"eslint": "^9.0.0",
"eslint-config-next": "^15.0.0",
"tailwindcss": "^3.4.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.40"
}
}