-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 1.29 KB
/
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
27
28
29
30
31
{
"name": "corgi",
"version": "0.0.1",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/jest",
"**/jest/**"
]
},
"scripts": {
"start-client": "yarn workspace client start",
"start-server": "yarn workspace server start-dev",
"start": "concurrently --kill-others-on-fail -p \"[{name}]\" -n \"CLIENT,SERVER\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn:start-client\" \"yarn:start-server\"",
"build": "concurrently --kill-others-on-fail -p \"[{name}]\" -n \"build-client,build-server\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn workspace client build\" \"yarn workspace server build\"",
"lint": "concurrently --kill-others-on-fail -p \"[{name}]\" -n \"lint-client,lint-server\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn workspace client lint\" \"yarn workspace server lint\"",
"test": "concurrently --kill-others-on-fail -p \"[{name}]\" -n \"test-client,test-server\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn workspace client test\" \"yarn workspace server test\"",
"heroku-postbuild": "yarn workspace server build",
"storybook": "yarn workspace client storybook"
},
"devDependencies": {
"concurrently": "^5.1.0",
"husky": "^4.0.6",
"lint-staged": "^9.5.0"
},
"dependencies": {}
}