-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "backend-project",
"version": "1.0.0",
"description": "",
"scripts": {
"install": "concurrently \"cd client&&npm install\" \"cd server&&npm install\"",
"test": "concurrently \"cd client&&cross-env CI=true npm test\" \"cd server&&npm test\"",
"build": "concurrently \"cd client&&npm run build\"",
"heroku-postbuild": "npm run build",
"start": "concurrently --kill-others-on-fail \"npm run start:dev:server\" \"npm run start:client\"",
"start:prod:server": "cd server&&npm run start",
"start:client": "cd client&&npm run start",
"start:dev:server": "cd server&&npm run dev"
},
"engines": {
"node": "^10.11.0"
},
"cacheDirectories": [
"node_modules",
"client/node_modules",
"server/node_modules"
],
"license": "MIT",
"devDependencies": {
"concurrently": "^4.0.1",
"cross-env": "^5.2.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"nodemon": "^1.18.7",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0"
},
"dependencies": {
"axios": "^0.21.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}