-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1.18 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
24
{
"name": "aavegotchi-svgs-subgraph",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"codegen:testnet": "graph codegen subgraph.testnet.yaml",
"build:testnet": "graph build subgraph.testnet.yaml",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ aavegotchi-svgs-subgraph",
"prepare:polygon": "mustache config/matic.json subgraph.template.yaml > subgraph.yaml",
"prepare:baseSepolia": "mustache config/baseSepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:matic": "mustache config/matic.json subgraph.template.yaml > subgraph.yaml",
"prepare:polter": "mustache config/polter.json subgraph.template.yaml > subgraph.yaml",
"create-local": "graph create --node http://localhost:8020/ aavegotchi-svgs-subgraph",
"remove-local": "graph remove --node http://localhost:8020/ aavegotchi-svgs-subgraph",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 aavegotchi-svgs-subgraph"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.60.0",
"@graphprotocol/graph-ts": "0.31.0",
"apollo-fetch": "^0.7.0",
"mustache": "^4.2.0"
}
}