-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 930 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
{
"name": "Jogging-App",
"version": "1.0.0",
"description": "## Requirements",
"main": "index.js",
"scripts": {
"docker:rebuild:cypress": "docker-compose --file docker-compose.e2e.yml up --no-deps --build cypress",
"e2e:ci": "docker-compose --file docker-compose.e2e.yml up --abort-on-container-exit",
"precommit": "cd e2e && npm run precommit && cd ../frontend && npm run precommit && cd ../backend && npm run precommit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArturJS/Jogging-App.git"
},
"keywords": [],
"author": "ArturJS",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArturJS/Jogging-App/issues"
},
"homepage": "https://github.com/ArturJS/Jogging-App#readme",
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "npm run precommit"
}
},
"devDependencies": {
"husky": "^1.3.1"
}
}