-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
56
57
{
"name": "nextjs-mui-template",
"version": "0.1.0",
"private": true,
"overrides": {
"react-qr-reader": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write --ignore-path .gitignore ./**/*.{js,jsx,ts,tsx,json}"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@grapecity/activereports-localization": "^4.1.1",
"@grapecity/activereports-react": "^4.1.0",
"@hookform/resolvers": "^3.3.2",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.18",
"@mui/x-date-pickers": "^6.19.7",
"@prisma/client": "^5.6.0",
"@types/node": "20.10.0",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.17",
"dayjs": "^1.11.10",
"eslint": "8.54.0",
"eslint-config-next": "14.0.3",
"leader-line-new": "^1.1.9",
"next": "14.0.3",
"next-auth": "^4.24.5",
"pino": "^8.19.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.48.2",
"react-qr-reader": "^3.0.0-beta-1",
"react-webcam": "^7.2.0",
"swr": "^2.2.4",
"typescript": "5.3.2",
"yup": "^1.3.2"
},
"devDependencies": {
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0",
"prisma": "^5.6.0",
"ts-node": "^10.9.1"
}
}