-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
58
59
60
61
62
{
"name": "chulachana-core",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 8080",
"seed": "prisma db seed",
"migrate": "prisma migrate dev"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^1.0.0",
"@influxdata/influxdb-client": "^1.7.1",
"@material-ui/core": "^4.11.0",
"@mui/material": "^5.5.1",
"@next/bundle-analyzer": "^9.5.5",
"@prisma/client": "^3.10.0",
"@types/cookies": "^0.7.4",
"@types/date-fns": "^2.6.0",
"@types/nprogress": "^0.2.0",
"axios": "^0.21.0",
"cookies": "^0.8.0",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"next": "9.5.5",
"nprogress": "^0.2.0",
"p-memoize": "^4.0.1",
"react": "^17.0.2",
"react-dom": "16.13.1",
"react-hook-form": "^6.9.5",
"validator": "^13.1.17"
},
"devDependencies": {
"@types/node": "^14.11.10",
"@types/react": "^16.9.53",
"eslint": "^8.11.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"prisma": "^3.10.0",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"yarn eslint --fix",
"yarn prettier --write"
]
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"packageManager": "[email protected]"
}