-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
26 lines (26 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
22
23
24
25
26
{
"name": "sandbox-subgraph",
"version": "0.1.0",
"scripts": {
"create:local": "graph create sandboxthegraph/the-sandbox --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"build": "graph build",
"generate": "node scripts/generate.js",
"deploy": "graph deploy --product hosted-service",
"deploy:mainnet": "yarn generate mainnet && yarn codegen && yarn deploy sandboxthegraph/the-sandbox",
"deploy:goerli": "yarn generate goerli && yarn codegen && yarn deploy sandboxthegraph/the-sandbox-goerli",
"deploy:mumbai": "yarn generate mumbai && yarn codegen && yarn deploy sandboxthegraph/the-sandbox-mumbai",
"deploy:polygon": "yarn generate matic && yarn codegen && yarn deploy sandboxthegraph/the-sandbox-polygon",
"deploy:local": "graph deploy sandboxthegraph/the-sandbox --ipfs http://localhost:5001 --node http://127.0.0.1:8020"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.32.0",
"@graphprotocol/graph-ts": "^0.27.0",
"fs-extra": "^10.1.0",
"handlebars": "^4.7.7"
},
"dependencies": {},
"resolutions": {
"node-fetch": "^2.6.7"
}
}