forked from clrfund/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.22 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
32
{
"name": "@clrfund/monorepo",
"repository": "https://github.com/clrfund/monorepo",
"license": "GPL-3.0",
"private": true,
"workspaces": {
"packages": [
"contracts",
"vue-app"
],
"nohoist": [
"**/@nomiclabs/**"
]
},
"scripts": {
"build": "yarn workspaces run build",
"build:contracts": "yarn workspace @clrfund/contracts run build",
"build:web": "yarn workspace @clrfund/vue-app run build",
"start:dev": "yarn deploy:local && yarn start:web",
"start:node": "yarn workspace @clrfund/contracts run node",
"start:web": "yarn workspace @clrfund/vue-app run serve",
"start:gun": "yarn workspace @clrfund/vue-app run gun",
"test": "yarn workspaces run test",
"test:contracts": "yarn workspace @clrfund/contracts run test",
"test:web": "yarn workspace @clrfund/vue-app run test",
"deploy:local": "yarn workspace @clrfund/contracts run deploy:local && yarn workspace @clrfund/contracts run deployTestRound:local",
"upgrade:local": "yarn workspace @clrfund/contracts run upgrade:local",
"lint": "yarn workspaces run lint",
"lint:contracts": "yarn workspace @clrfund/contracts run lint",
"lint:web": "yarn workspace @clrfund/vue-app run lint"
}
}