forked from coreui/coreui-free-react-admin-template
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
36 lines (36 loc) · 1.13 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
{
"scripts": {
"prepare": "husky install",
"local-install": "yarn install && cd client && yarn install && cd ../backend && yarn install && cd ..",
"start-server": "nodemon index.js",
"start-client": "cd client && yarn run local-build && cd ..",
"dev": "npm-run-all --parallel start-client start-server",
"build-client": "cd client && yarn build && cd ..",
"reset-db": "node ./backend/routes/Schemas/preload.js",
"heroku-postbuild": "cd client && yarn install --dev && yarn run webpack && cd ../backend && yarn install && cd ..",
"start": "node index.js"
},
"engines": {
"node": ">=14.15",
"yarn": ">=1.22"
},
"dependencies": {
"@material-ui/icons": "^4.11.2",
"bcrypt": "^5.1.1",
"bootstrap-icons": "^1.5.0",
"browserslist": "^4.21.10",
"connect-history-api-fallback": "^1.6.0",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"prettier": "^2.3.2"
},
"devDependencies": {
"husky": "^7.0.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"pretty-quick": "^3.1.1"
}
}