-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "inventory",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.3.1",
"@mui/lab": "^5.0.0-alpha.67",
"@mui/material": "^5.4.0",
"@mui/x-data-grid": "^5.4.0",
"@prisma/client": "^3.9.1",
"cookie": "^0.4.2",
"date-fns": "^2.28.0",
"json2csv": "^5.0.6",
"jsonwebtoken": "^8.5.1",
"next": "^12.0.10",
"notistack": "^2.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.25.3",
"react-number-format": "^4.9.1"
},
"devDependencies": {
"@types/cookie": "^0.4.1",
"@types/json2csv": "^5.0.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "17.0.14",
"@types/react": "17.0.38",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"prisma": "^3.9.1",
"typescript": "4.5.5"
}
}