-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
22 lines (22 loc) · 1.07 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
{
"name": "kittygotchi-graph",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare:matic": "mustache config/matic.json subgraph.template.yaml > subgraph.yaml",
"prepare:mumbai": "mustache config/mumbai.json subgraph.template.yaml > subgraph.yaml",
"deploy:matic": "yarn prepare:matic && yarn deploy:graph",
"deploy:mumbai": "yarn prepare:mumbai && yarn deploy:graph:mumbai",
"deploy:graph": "graph deploy --node https://api.thegraph.com/deploy/ JoaoCampos89/champions",
"deploy:graph:mumbai": "graph deploy --node https://api.thegraph.com/deploy/ JoaoCampos89/championsmumbai",
"create-local": "graph create --node http://localhost:8020/ JoaoCampos89/champions",
"remove-local": "graph remove --node http://localhost:8020/ JoaoCampos89/champions",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 JoaoCampos89/kittygotchi"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.22.2",
"@graphprotocol/graph-ts": "0.22.1",
"mustache": "^4.2.0"
}
}