-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 982 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
{
"name": "deathwish",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:aaronmcadam/deathwish.git",
"author": "Aaron Mc Adam <[email protected]>",
"license": "UNLICENSED",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "start-server-and-test start 3000 cypress",
"dev:up": "yarn && docker-compose -f docker-compose.dev.yml up",
"dev:down": "docker-compose -f docker-compose.dev.yml down --remove-orphans",
"dev:uninstall": "docker-compose -f docker-compose.dev.yml down --rmi all",
"start": "yarn dev:down; yarn dev:up",
"cypress": "yarn workspace deathwish-client cypress",
"client": "yarn workspace deathwish-client start",
"server": "yarn workspace deathwish-server dev",
"test": "yarn workspace deathwish-server test && yarn workspace deathwish-client test:once",
"test:all": "start-server-and-test start 3000 test"
},
"devDependencies": {
"start-server-and-test": "^1.10.5"
}
}