-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 1.1 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": "nft-league",
"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:mumbai": "yarn prepare:mumbai && graph deploy --node https://api.thegraph.com/deploy/ JoaoCampos89/nft-league-mumbai",
"deploy:matic": "yarn prepare:matic && graph deploy --node https://api.thegraph.com/deploy/ JoaoCampos89/nft-league-matic",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ JoaoCampos89/nft-league-mumbai",
"create-local": "graph create --node http://localhost:8020/ JoaoCampos89/nft-league-mumbai",
"remove-local": "graph remove --node http://localhost:8020/ JoaoCampos89/nft-league-mumbai",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 JoaoCampos89/nft-league-mumbai"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.26.0",
"@graphprotocol/graph-ts": "0.24.1",
"mustache": "^4.2.0"
}
}