-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 1.59 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
{
"name": "daohaus-v3",
"version": "0.1.0",
"scripts": {
"create": "graph create hausdao/dh-signal-tcr-goerli --node https://api.thegraph.com/deploy/",
"codegen": "graph codegen",
"build": "graph build",
"create-local": "graph create hausdao/dh-signal-tcr-goerli --node http://127.0.0.1:8020",
"deploy-local": "graph deploy hausdao/dh-signal-tcr-goerli --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"build:all": "yarn codegen && yarn build",
"prepare:sepolia": "node manifests/deploy-prep.js sepolia",
"deploy:sepolia": "yarn prepare:sepolia && yarn build:all && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ hausdao/dh-signal-tcr-sepolia",
"prepare:goerli": "node manifests/deploy-prep.js goerli",
"deploy:goerli": "yarn prepare:goerli && yarn build:all && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ hausdao/dh-signal-tcr-goerli",
"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/dh-signal-tcr-gnosis",
"prepare:mainnet": "node manifests/deploy-prep.js mainnet",
"deploy:mainnet": "yarn prepare:mainnet && yarn build:all && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ hausdao/dh-signal-tcr"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.25.0",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"js-yaml": "^3.13.1"
}
}