-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "zjunior-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"gen": "npx prisma generate --schema=./ORM/prisma/schema.prisma",
"build": "npm run gen & next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@google-analytics/data": "^4.0.1",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.128",
"@mui/material": "^5.12.0",
"@mui/x-data-grid": "^6.2.0",
"@mui/x-date-pickers": "^6.12.1",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"next": "13.3.0",
"next-themes": "^0.2.1",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toastify": "^9.1.2",
"sweetalert2": "^11.7.28",
"swr": "^2.2.0",
"tailwindcss": "3.3.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@prisma/client": "^5.1.1",
"@types/node": "^18.16.3",
"@types/uuid": "^9.0.3",
"prisma": "^5.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}