forked from clrfund/clrfund-deployer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 980 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
24
25
26
27
28
29
30
{
"name": "@clrfund/clrfund-deployer",
"repository": "https://github.com/daodesigner/clrfund-deployer",
"license": "GPL-3.0",
"private": true,
"workspaces": {
"packages": [
"contracts",
"deployer",
"subgraph"
],
"nohoist": [
"**/@nomiclabs/**"
]
},
"scripts": {
"build": "yarn workspaces run build",
"build:contracts": "yarn workspace @clrfund/contracts run build",
"build:deployer": "yarn workspace @clrfund/deployer run build",
"build:subgraph": "yarn workspace @clrfund/subgraph run codegen && yarn workspace @clrfund/subgraph run build",
"start:node": "yarn workspace @clrfund/contracts run node",
"start:deployer": "yarn workspace @clrfund/deployer run start",
"test": "yarn workspaces run test",
"test:contracts": "yarn workspace @clrfund/contracts run test",
"deploy:subgraph":"yarn workspace @clrfund/subgraph run deploy"
},
"devDependencies": {
"typechain": "^3.0.0"
}
}