-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
24 lines (24 loc) · 962 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
{
"private": true,
"name": "spot-globe",
"workspaces": [
"packages/*"
],
"scripts": {
"client": "yarn workspace @spot-globe/client start",
"client:app": "yarn workspace @spot-globe/client start:app",
"client:build": "yarn workspace @spot-globe/client build",
"server": "yarn workspace @spot-globe/server start",
"server:prod": "yarn workspace @spot-globe/server start:prod",
"server:build": "yarn workspace @spot-globe/server build",
"server:dev": "yarn workspace @spot-globe/server start:dev",
"test": "yarn workspace @spot-globe/server test",
"build": "yarn server:build && yarn client:build",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start:prod": "concurrently --kill-others-on-fail \"yarn server:prod\"",
"start:dev": "concurrently --kill-others-on-fail \"yarn server:dev\" \"yarn client:app\""
},
"dependencies": {
"concurrently": "^4.1.2"
}
}