-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma:generate": "prisma generate",
"prisma:migrate-dev": "prisma migrate dev",
"prisma:studio": "prisma studio",
"worker": "tsx ./scripts/worker.ts",
"test": ""
},
"dependencies": {
"@ant-design/icons": "5.0.1",
"@prisma/client": "^4.13.0",
"antd": "5.4.2",
"axios": "1.6.0",
"date-fns": "2.29.3",
"dotenv": "^16.0.3",
"mime-types": "2.1.35",
"minio": "7.1.0",
"nanoid": "4.0.2",
"nats": "2.13.1",
"next": "13.5.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "2.1.3",
"typescript": "5.0.4",
"yup": "1.1.1"
},
"devDependencies": {
"@types/mime-types": "^2.1.1",
"@types/minio": "^7.0.18",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"prisma": "^4.13.0",
"tsx": "^3.12.6"
},
"volta": {
"node": "16.20.2"
}
}