-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "derby-tracker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx prisma generate && next dev",
"build": "npx prisma generate && next build",
"start": "next start",
"lint": "next lint",
"dbpush": "npx prisma db push",
"dbseed": "npx prisma db seed",
"dbstudio": "npx prisma studio"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.4",
"@mui/icons-material": "^5.15.10",
"@mui/lab": "^5.0.0-alpha.165",
"@mui/material": "^5.15.10",
"@mui/material-nextjs": "^5.15.9",
"@mui/x-data-grid": "^6.19.4",
"@mui/x-date-pickers": "^6.19.6",
"@prisma/client": "^5.9.1",
"@types/sanitize-html": "^2.11.0",
"@vercel/postgres": "^0.7.2",
"add": "^2.0.6",
"bcryptjs": "^2.4.3",
"dayjs": "^1.11.10",
"next": "14.1.0",
"prisma": "^5.9.1",
"react": "^18",
"react-big-calendar": "^1.11.2",
"react-dom": "^18",
"react-hook-form": "^7.50.1",
"react-quill": "^2.0.0",
"sanitize-html": "^2.12.1",
"yarn": "^1.22.21",
"yup": "^1.3.3",
"zustand": "^4.5.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"tsx": "^4.7.1",
"typescript": "^5"
}
}