-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
23 lines (23 loc) · 1.44 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
{
"name": "tcap-graph",
"license": "UNLICENSED",
"scripts": {
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"prepare:rinkeby": "mustache config/rinkeby.json subgraph.template.yaml > subgraph.yaml",
"codegen": "graph codegen",
"build": "graph build",
"deploy-rinkeby": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ cryptexfinance/tcap-rinkeby-two",
"deploy-test-mainnet": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ jdestephen/tcap-demo",
"deploy-test-mainnet2": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ jdestephen/tcap-demo-2",
"deploy-test-mainnet3": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ jdestephen/tcap-demo-three",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ cryptexfinance/tcap-graph",
"create-local": "graph create --node http://localhost:8020/ cryptexfinance/tcap",
"remove-local": "graph remove --node http://localhost:8020/ cryptexfinance/tcap",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 cryptexfinance/tcap-graph"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.30.4",
"@graphprotocol/graph-ts": "^0.27.0",
"mustache": "^4.2.0"
}
}