-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 787 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
{
"name": "monorepo-express-create-react-app",
"version": "0.0.1",
"private": true,
"repository": "https://[email protected]/allardvanderouw/monorepo-express-create-react-app.git",
"author": "Allard van der Ouw <[email protected]>",
"license": "MIT",
"scripts": {
"start": "nf start",
"test": "yarn server:test",
"client:lint": "yarn workspace workspace-client lint",
"client:start": "yarn workspace workspace-client start",
"client:build": "yarn workspace workspace-client build",
"server:test": "yarn workspace workspace-server test",
"server:test:mocha": "yarn workspace workspace-server test:mocha"
},
"workspaces": ["workspace-server", "workspace-client"],
"nyc": {
"exclude": [
"**/test"
]
}
}