forked from graphprotocol/everest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.73 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
33
34
35
36
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"./contracts",
"./subgraph",
"./subgraph/mutations",
"./ui"
],
"nohoist": [
"**/graph-ts"
]
},
"scripts": {
"build:contracts": "lerna exec --scope everest-contracts -- yarn build",
"build:mutations": "lerna exec --scope everest-mutations -- yarn build",
"build:subgraph-ropsten": "lerna exec --scope everest-subgraph -- yarn build-ropsten",
"build:subgraph-mainnet": "lerna exec --scope everest-subgraph -- yarn build-mainnet",
"deploy:subgraph-ropsten": "lerna exec --scope everest-subgraph -- yarn deploy-ropsten",
"deploy:subgraph-mainnet": "lerna exec --scope everest-subgraph -- yarn deploy-mainnet",
"deploy:subgraph-testing": "lerna exec --scope everest-subgraph -- yarn deploy-testing",
"build:ui": "lerna exec --scope everest-ui -- yarn build",
"start:ui": "lerna exec --scope everest-ui -- yarn start",
"build-ropsten": "yarn build:contracts && yarn build:subgraph-ropsten && yarn build:mutations",
"build-mainnet": "yarn build:contracts && yarn build:subgraph-mainnet && yarn build:mutations",
"deploy-subgraph-ropsten": "yarn build-ropsten && yarn deploy:subgraph-ropsten",
"deploy-subgraph-mainnet": "yarn build-mainnet && yarn deploy:subgraph-mainnet",
"deploy-testing": "yarn build-ropsten && yarn deploy:subgraph-testing",
"start:dev-ropsten": "yarn build:mutations && GATSBY_ACTIVE_ENV=development yarn start:ui",
"start:dev-mainnet": "yarn build:mutations && GATSBY_ACTIVE_ENV=production yarn start:ui"
},
"devDependencies": {
"lerna": "3.20.2"
}
}