forked from protofire/augur-v2-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
21 lines (21 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "augurv2",
"version": "0.2.0",
"private": true,
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"prepare:staging": "mustache config/staging.json subgraph.template.yaml > subgraph.yaml",
"deploy:mainnet": "yarn prepare:mainnet && graph deploy --node https://api.thegraph.com/deploy/ --access-token $GRAPH_TOKEN --ipfs https://api.thegraph.com/ipfs/ augurproject/augur-v2",
"deploy:staging": "yarn prepare:staging && graph deploy --node https://api.thegraph.com/deploy/ --access-token $GRAPH_TOKEN --ipfs https://api.thegraph.com/ipfs/ augurproject/augur-v2-staging",
"create-local": "graph create --node http://localhost:8020/ augurproject/augur-v2",
"remove-local": "graph remove --node http://localhost:8020/ augurproject/augur-v2",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 augurproject/augur-v2"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.18.0",
"@graphprotocol/graph-ts": "0.18.0",
"mustache": "4.0.1"
}
}