forked from ark4n631/contracts-events
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 2.54 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 2.54 KB
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
{
"name": "teller-protocol-subgraph",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"build:ganache": "yarn prepare:ganache && graph build",
"build:ropsten": "yarn prepare:ropsten && graph build",
"build:rinkeby": "yarn prepare:rinkeby && graph build",
"build:mainnet": "yarn prepare:mainnet && graph build",
"thegraph:deploy:ropsten": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ teller-protocol/subgraph-ropsten",
"thegraph:deploy:rinkeby": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ teller-protocol/subgraph-rinkeby",
"thegraph:deploy:mainnet": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ teller-protocol/subgraph-mainnet",
"create-local": "graph create --node http://127.0.0.1:8020/ teller-protocol/subgraph",
"create-docker": "graph create --node http://$GRAPH_HOST:$GRAPH_PORT/ teller-protocol/subgraph",
"remove-local": "graph remove --node http://127.0.0.1:8020/ teller-protocol/subgraph",
"remove-docker": "graph remove --node http://$GRAPH_HOST:$GRAPH_PORT/ teller-protocol/subgraph",
"deploy-local": "graph deploy --node http://127.0.0.1:8020/ --ipfs http://localhost:5001 teller-protocol/subgraph",
"deploy-docker": "graph deploy --node http://$GRAPH_HOST:$GRAPH_PORT/ --ipfs http://$IPFS_HOST:$IPFS_PORT teller-protocol/subgraph",
"prepare:ganache": "mustache config/ganache.json subgraph.template.yaml > subgraph.yaml",
"prepare:ropsten": "mustache config/ropsten.json subgraph.template.yaml > subgraph.yaml",
"prepare:rinkeby": "mustache config/rinkeby.json subgraph.template.yaml > subgraph.yaml",
"prepare:kovan": "mustache config/kovan.json subgraph.template.yaml > subgraph.yaml",
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"deploy:ganache": "yarn remove-local; yarn prepare:ganache && yarn create-local && yarn build:ganache && yarn deploy-local",
"deploy:ropsten": "yarn prepare:ropsten && yarn build:ropsten && yarn thegraph:deploy:ropsten",
"deploy:rinkeby": "yarn prepare:rinkeby && yarn build:rinkeby && yarn thegraph:deploy:rinkeby",
"deploy:mainnet": "yarn prepare:mainnet && yarn build:mainnet && yarn thegraph:deploy:mainnet",
"deploy:docker": "yarn remove-docker; yarn prepare:ganache && yarn create-docker && yarn deploy-docker"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.18.0",
"@graphprotocol/graph-ts": "0.18.1",
"mustache": "^4.0.1"
}
}