-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 879 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
{
"scripts": {
"frontend-test": "cd frontend && yarn test",
"backend-test": "cd backend && yarn test",
"test": "npm-run-all backend-test && yarn frontend-test",
"coverage-frontend": "cd frontend && yarn test -- --coverage",
"coverage-backend": "cd backend && nyc --reporter=lcov yarn test",
"coverage": "npm-run-all coverage-backend coverage-frontend",
"test-ui": "codeceptjs run --steps",
"start-frontend": "npm-run-all -s cd frontend && yarn install && yarn start",
"start-backend": " npm-run-all -s cd backend && yarn install && yarn start",
"stop-frontend": "cd frontend && yarn stop",
"stop-backend": "cd backend && yarn stop",
"start": "sh deploy.sh",
"stop": "npm-run-all -p stop-backend stop-frontend"
},
"dependencies": {
"codeceptjs": "^2.0.7",
"npm-run-all": "^4.1.3",
"puppeteer": "^1.13.0"
}
}