-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 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
{
"name": "nextjs-zhcn-cny-prisma-sqlite",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"seed": "prisma db seed",
"prepare": "husky install",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^5.16.2",
"big.js": "^6.2.1",
"date-fns": "^3.6.0",
"dayjs": "^1.11.13",
"next": "^14.2.7",
"next-auth": "^4.24.7",
"next-intl": "^3.15.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.7",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prisma": "^5.16.2",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"engines": {
"node": ">=18.18.0"
}
}