-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 874 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 874 Bytes
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
{
"author": "Jason Van Malder, Sylvain Urbain",
"license": "GPL-3.0",
"scripts": {
"test": "yarn test-api && yarn test-desktop",
"test-api": "cd projects/api && yarn test && yarn lint",
"test-desktop": "cd projects/desktop && yarn lint",
"start-desktop": "cd projects/desktop && pm2 start -f ./node_modules/react-scripts/scripts/start.js && wait-on http://localhost:3000",
"test-desktop-cypress": "cd projects/desktop && yarn run cypress:run",
"clean-jobs": "pm2 kill"
},
"pre-commit": [
"test-api",
"test-desktop",
"start-desktop",
"test-desktop-cypress",
"clean-jobs"
],
"devDependencies": {
"danger": "^9.2.9",
"pm2": "^4.2.0",
"pre-commit": "^1.2.2"
},
"dependencies": {
"start-server-and-test": "^1.10.6"
}
}