-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "sd-catalog-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"start-mock-api": "node lib/start-mock-api.mjs"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.4",
"mongodb": "^4.5.0",
"next": "12.1.5",
"prop-types": "^15.8.1",
"react": "18.0.0",
"react-dom": "18.0.0"
},
"devDependencies": {
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"dotenv-expand": "^8.0.3",
"eslint": "8.13.0",
"eslint-config-next": "12.1.5",
"fastify": "^3.28.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"node-fetch": "^3.2.3",
"prettier": "^2.6.2"
},
"volta": {
"node": "17.7.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}