-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1003 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 1003 Bytes
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": "sandbox-stats-subgraph",
"version": "0.1.0",
"scripts": {
"create": "graph create pixowl/sandbox-stats --node https://api.thegraph.com/deploy/",
"create-local": "graph create pixowl/sandbox-stats --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"build": "graph build",
"generate": "node scripts/generate.js",
"deploy": "dotenv -- cross-var graph deploy --product hosted-service",
"deploy:mainnet": "yarn codegen && yarn generate mainnet && yarn deploy pixowl/sandbox-stats",
"deploy:rinkeby": "yarn codegen && yarn generate rinkeby && yarn deploy pixowl/sandbox-stats-rinkeby",
"deploy-local": "graph deploy pixowl/sandbox-stats --ipfs http://localhost:5001 --node http://127.0.0.1:8020"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.26.0",
"@graphprotocol/graph-ts": "^0.24.1",
"cross-var": "^1.1.0",
"dotenv-cli": "^5.0.0",
"fs-extra": "^10.0.0",
"handlebars": "^4.7.7",
"rimraf": "^3.0.2"
}
}