-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "template-web",
"version": "0.1.0",
"private": true,
"author": {
"name": "wuxian",
"url": "https://github.com/996wuxian"
},
"license": "MIT",
"keywords": [
"next.js",
"react",
"typescript"
],
"homepage": "https://github.com/996wuxian/template-web",
"repository": {
"type": "git",
"url": "https://github.com/996wuxian/template-web.git"
},
"bugs": {
"url": "https://github.com/996wuxian/template-web/issues"
},
"scripts": {
"count": "node scripts/generate-count.js",
"watch-blogs": "node scripts/watch-blogs.js",
"dev": "next dev --turbopack",
"push-db": "npx prisma db push",
"generate": "npx prisma generate",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@prisma/client": "^6.13.0",
"@types/pg": "^8.15.5",
"@types/react-syntax-highlighter": "^15.5.13",
"chokidar": "^4.0.3",
"gray-matter": "^4.0.3",
"next": "15.3.8",
"pg": "^8.16.3",
"prisma": "^6.13.0",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-syntax-highlighter": "^15.6.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"tailwindcss": "^4",
"typescript": "^5"
}
}