-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "foodie-back-office",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npx prisma migrate deploy && npx prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.13",
"@mui/material": "^5.14.13",
"@prisma/client": "^5.4.2",
"@reduxjs/toolkit": "^1.9.7",
"@types/multer": "^1.4.9",
"@types/multer-s3": "^3.0.2",
"@types/react-redux": "^7.1.27",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"nanoid": "^5.0.3",
"next": "13.5.4",
"next-auth": "^4.23.2",
"prisma": "^5.4.2",
"qrcode": "^1.5.3",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-redux": "^8.1.3",
"react-spinners": "^0.13.8"
},
"devDependencies": {
"@types/node": "^20.9.2",
"@types/qrcode": "^1.5.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"typescript": "^5"
}
}