-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 857 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"apps/*"
]
},
"scripts": {
"start:server": "yarn workspace server start",
"start:client": "yarn workspace client start",
"build:client": "yarn workspace client build",
"build:server": "yarn workspace server build",
"start": "concurrently --kill-others-on-fail --names server,client --prefix-colors yellow,green.inverse \"yarn workspace server run start\" \"yarn workspace client run start\"",
"dev": "concurrently --kill-others-on-fail --names server,client --prefix-colors yellow,green.inverse \"yarn workspace server run dev\" \"yarn workspace client run dev\"",
"build": "yarn build:client && yarn build:server"
},
"devDependencies": {
"concurrently": "^7.4.0",
"turbo": "^1.4.6"
},
"engines": {
"node": "14.x"
}
}