-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 1.34 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
{
"name": "clipto-subgraph-v2",
"license": "UNLICENSED",
"repository": {
"url": "https://github.com/Clipto-Platform/clipto-subgraph/tree/v2"
},
"scripts": {
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ Clipto-Platform/clipto-subgraph",
"create-local": "graph create --node http://localhost:8020/ Clipto-Platform/clipto-subgraph",
"remove-local": "graph remove --node http://localhost:8020/ Clipto-Platform/clipto-subgraph",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 Clipto-Platform/clipto-subgraph",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"codegen": "rm -rf generated && graph codegen subgraph.yaml",
"build": "rm -rf build && graph build subgraph.yaml",
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"prepare:testnet": "mustache config/testnet.json subgraph.template.yaml > subgraph.yaml",
"deploy:testnet": "graph deploy --product hosted-service clipto-platform/clipto-subgraph-tstnet",
"deploy:mainnet": "graph deploy --product hosted-service clipto-platform/clipto-subgraph-mainnet",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.26.0",
"@graphprotocol/graph-ts": "^0.24.1",
"matchstick-as": "^0.3.0"
}
}