-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 949 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "polygon-graph",
"license": "UNLICENSED",
"scripts": {
"prepare:matic": "mustache config/matic.json subgraph.template.yaml > subgraph.yaml",
"codegen": "graph codegen",
"build": "graph build",
"deploy-test": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ jdestephen/tcap-demo",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ cryptexfinance/polygon-graph",
"create-local": "graph create --node http://localhost:8020/ cryptexfinance/polygon-graph",
"remove-local": "graph remove --node http://localhost:8020/ cryptexfinance/polygon-graph",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 cryptexfinance/polygon-graph"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.18.0",
"@graphprotocol/graph-ts": "^0.18.0",
"mustache": "^4.2.0"
}
}