-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.41 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
{
"workspaces": [
"backend-client",
"frontend"
],
"name": "green-ecolution-frontend",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "yarn workspace @green-ecolution/frontend dev",
"build": "yarn build:backend-client && yarn build:frontend",
"build:frontend": "yarn workspace @green-ecolution/frontend build",
"build:frontend:dev": "yarn workspace @green-ecolution/frontend build:dev",
"build:frontend:stage": "yarn workspace @green-ecolution/frontend build:stage",
"build:backend-client": "yarn workspace @green-ecolution/backend-client build",
"generate": "yarn generate:backend-client",
"generate:dev": "yarn generate:backend-client:dev",
"generate:local": "yarn generate:backend-client:local",
"generate:backend-client": "yarn workspace @green-ecolution/backend-client generate",
"generate:backend-client:local": "yarn workspace @green-ecolution/backend-client generate:local",
"generate:backend-client:dev": "yarn workspace @green-ecolution/backend-client generate:dev",
"ci": "yarn workspace @green-ecolution/backend-client generate:ci",
"lint": "yarn workspace @green-ecolution/frontend lint",
"test": "echo \"It works!\"",
"preview": "yarn workspace @green-ecolution/frontend preview",
"rebuild": "yarn build:backend-client && rm -rf frontend/node_modules && yarn install",
"fmt": "yarn workspace @green-ecolution/frontend fmt"
}
}