-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 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
{
"name": "scheduler",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"serve": "json-server --watch db.json --port 8080"
},
"dependencies": {
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@hookform/resolvers": "2.9.11",
"@mdx-js/loader": "2.3.0",
"@mdx-js/react": "2.3.0",
"@mui/icons-material": "5.11.0",
"@mui/lab": "5.0.0-alpha.121",
"@mui/material": "5.11.7",
"@next/font": "13.1.6",
"@next/mdx": "13.5.3",
"@prisma/client": "4.11.0",
"@types/mdx": "2.0.8",
"bcrypt": "5.1.0",
"cookies-next": "2.1.1",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"json-server": "0.17.1",
"jsonwebtoken": "9.0.0",
"kavenegar": "1.1.4",
"lodash": "4.17.21",
"mui-one-time-password-input": "1.1.1",
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.5",
"react-hot-toast": "2.4.0",
"react-input-mask": "2.0.4",
"typescript": "4.9.5",
"zod": "3.21.4"
},
"devDependencies": {
"@types/bcrypt": "5.0.0",
"@types/jsonwebtoken": "9.0.1",
"@types/lodash": "4.14.198",
"@types/node": "18.11.19",
"@types/pg": "8.6.6",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/react-input-mask": "3.0.2",
"prisma": "4.11.0"
}
}