-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "eudi-web-booking-service-demo",
"version": "0.1.1-SNAPSHOT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3000",
"lint": "next lint",
"prisma:push": "npx prisma db push",
"prisma:deploy": "npx prisma migrate deploy",
"prisma:init": "npx prisma generate"
},
"dependencies": {
"@automapper/core": "^8.8.1",
"@automapper/pojos": "^8.8.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.13.0",
"@headlessui/react": "^2.1.7",
"@hookform/resolvers": "^3.9.0",
"@mui/material": "^6.1",
"@mui/material-nextjs": "^6.1.0",
"@mui/x-date-pickers": "^7.10",
"@prisma/client": "^5.19.1",
"cbor-x": "^1.6.0",
"dayjs": "^1.11.13",
"jks-js": "^1.1.3",
"jose": "^5.8.0",
"next": "^14.2.5",
"next-themes": "^0.3.0",
"node-device-detector": "^2.1.3",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-qr-code": "^2.0.15",
"react-toastify": "^10.0.5",
"reflect-metadata": "^0.2.2",
"swr": "^2.2.5",
"typedi": "^0.10.0",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8.4.45",
"prisma": "^5.19.1",
"typescript": "^5"
}
}