-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
21 lines (21 loc) · 1.01 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": "burngraph-poc",
"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-mainnet": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ burnsignal/proof-of-concept",
"deploy-rinkeby": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ burnsignal/burnsignal-rinkeby",
"create-local": "graph create --node http://localhost:8020/ madhur4444/imgovdynamic",
"remove-local": "graph remove --node http://localhost:8020/ madhur4444/imgovdynamic",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 madhur4444/imgovdynamic"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.17.0"
},
"devDependencies": {
"mustache": "^4.0.1"
}
}