-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.29 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
25
26
27
28
29
30
31
{
"name": "gotchiverse-subgraph",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "dotenv -e .env graph deploy gotchiverse-subgraph --version-label $VERSION_LABEL --node https://subgraphs.alchemy.com/api/subgraphs/deploy --deploy-key $DEPLOY_KEY --ipfs https://ipfs.satsuma.xyz",
"prepare:polygon": "mustache config/polygon.json subgraph.template.yaml > subgraph.yaml",
"prepare:amoy": "mustache config/amoy.json subgraph.template.yaml > subgraph.yaml",
"create-local": "graph create --node http://localhost:8020/ aavegotchi/gotchiverse-matic",
"remove-local": "graph remove --node http://localhost:8020/ aavegotchi/gotchiverse-matic",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 aavegotchi/gotchiverse-matic",
"test": "graph test -r -l"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphprotocol/graph-cli": "0.60.0",
"@graphprotocol/graph-ts": "0.31.0",
"apollo-fetch": "^0.7.0",
"matchstick-as": "^0.5.0",
"mustache": "^4.2.0"
}
}