-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
24 lines (24 loc) · 1.33 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
{
"name": "daohaus-v3",
"version": "0.1.0",
"scripts": {
"create": "graph create hausdao/daohaus-v3-rinkeby --node https://api.thegraph.com/deploy/",
"codegen": "graph codegen",
"build": "graph build",
"create-local": "graph create hausdao/daohaus-v3-rinkeby --node http://127.0.0.1:8020",
"deploy-local": "graph deploy hausdao/daohaus-v3-rinkeby --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"build:all": "yarn codegen && yarn build",
"prepare:rinkeby": "node manifests/deploy-prep.js rinkeby",
"deploy:rinkeby": "yarn prepare:rinkeby && yarn build:all && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ hausdao/daohaus-v3-rinkeby",
"prepare:kovan": "node manifests/deploy-prep.js kovan",
"deploy:kovan": "yarn prepare:kovan && yarn build:all && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ hausdao/daohaus-v3-kovan",
"prepare:xdai": "node manifests/deploy-prep.js xdai",
"deploy:xdai": "yarn prepare:xdai && yarn build:all && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ hausdao/daohaus-v3-xdai"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.22.1",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"js-yaml": "^3.13.1"
}
}