generated from wyncode/midterm_project_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 973 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
35
36
37
38
{
"name": "midterm_template",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": ">= 14.9.0"
},
"license": "MIT",
"dependencies": {
"animate.css": "^4.1.1",
"axios": "^0.21.0",
"bootstrap": "^4.5.3",
"concurrently": "^5.3.0",
"express": "^4.17.1",
"react-bootstrap": "^1.4.0",
"sweetalert2": "^10.10.4"
},
"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"
}
}