generated from wyncode/midterm_project_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 912 Bytes
/
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
{
"name": "midterm_template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"axios": "^0.21.0",
"concurrently": "^5.3.0",
"express": "^4.17.1",
"react-burger-menu": "^2.9.2",
"react-hook-form": "^6.11.4",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"husky": "^4.3.0",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && yarn run start",
"dev": "concurrently --kill-others-on-fail \"yarn run server\" \"yarn run client\"",
"heroku-postbuild": "cd client && yarn && yarn run build",
"prettify": "prettier '*/**/*.js' '*/**/*.jsx' '*/**/*.html' '*/**/*.css' --write"
}
}