-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 819 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 819 Bytes
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
{
"name": "work-flow",
"description": "work-flow app",
"version": "2.0.0",
"author": "Dariusz Rodzewicz",
"license": "ISC",
"private": true,
"workspaces": [
"server",
"client",
"e2e"
],
"scripts": {
"client:dev:run": "yarn --cwd client dev",
"client:prod:run": "yarn --cwd client start",
"server:dev:run": "yarn --cwd server serve",
"server:prod:run": "yarn --cwd server start",
"client:build": "yarn --cwd client build",
"server:build": "yarn --cwd server build",
"client:test": "yarn --cwd client test",
"preapp:build": "rimraf -d server/dist/public",
"app:build": "yarn client:build && yarn server:build",
"app:run": "yarn --cwd server start",
"app:test": "yarn --cwd e2e test",
"postapp:build": "mv client/dist server/dist/public"
}
}