-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.52 KB
/
package.json
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "maintenance-management-system",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "prisma generate && next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"studio:dev": "dotenv -e .env.development -- prisma studio",
"studio:prod": "dotenv -e .env.production -- prisma studio",
"migrate:dev": "dotenv -e .env.development -- prisma migrate dev",
"migrate:prod": "dotenv -e .env.production -- prisma migrate deploy",
"resetDB": "prisma migrate reset --force ",
"resetDB:dev": "dotenv -e .env.development -- pnpx prisma migrate reset",
"resetDB:prod": "dotenv -e .env.production -- prisma migrate reset"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@amap/amap-jsapi-types": "^0.0.13",
"@heycar/amap-jsapi-loader": "^1.0.1",
"@hookform/resolvers": "^3.3.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-table": "^8.10.7",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"autoprefixer": "10.4.14",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"framer-motion": "^10.16.4",
"lucide-react": "^0.259.0",
"next": "14.0.1",
"next-auth": "^4.24.4",
"postcss": "8.4.25",
"pretty-print-json": "^2.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.47.0",
"react-hot-toast": "^2.4.1",
"react-use": "^17.4.0",
"sharp": "^0.32.6",
"supports-color": "8.1.1",
"swr": "^2.2.4",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.7",
"web-push": "^3.6.6",
"xlsx": "^0.18.5",
"zod": "^3.22.4",
"zustand": "^4.4.4"
},
"devDependencies": {
"@prisma/client": "5.6.0",
"@types/bcrypt": "^5.0.1",
"@types/node": "20.4.1",
"@types/web-push": "^3.6.2",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"prisma": "^5.6.0",
"ts-node": "^10.9.1",
"typescript": "5.1.6"
}
}