-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.58 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.58 KB
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
{
"name": "work-in-progress",
"version": "1.0.0",
"description": "Weeks 11-13 Student Project",
"main": "index.js",
"scripts": {
"app": "cd wip-app && npm start",
"api": "cd wip-rest-api && npm run dev",
"app-test": "cd wip-app && npm test",
"app-test:watch": "cd wip-app && npm test:watch",
"api-test": "cd wip-rest-api && npm test",
"api-test:watch": "cd wip-rest-api && npm test:watch",
"husky-api-test": "cd wip-rest-api && npm run husky-test",
"husky-app-test": "cd wip-app && npm run husky-test",
"test": "npm run app-test && npm run api-test",
"test:watch": "npm run app-test:watch && cd .. && npm run api-test:watch",
"initdb": "node wip-rest-api/src/database/build.js",
"travis-test": "npm run app-test && cd wip-rest-api && npm run test-travis",
"prettier": "./node_modules/.bin/prettier . --write",
"backeslint": "./wip-rest-api/node_modules/.bin/eslint wip-rest-api --fix",
"i-all": "npm i && cd wip-app && npm i && cd .. && cd wip-rest-api && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac19/work-in-progress.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac19/work-in-progress/issues"
},
"homepage": "https://github.com/fac19/work-in-progress#readme",
"devDependencies": {
"codecov": "^3.7.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run backeslint && npm run husky-api-test && CI=true npm run husky-app-test"
}
}
}