-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
28 lines (28 loc) · 1.52 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
{
"name": "honeyswap-subgraph",
"version": "1.0.0",
"repository": "https://github.com/1Hive/honeyswap-subgraph",
"license": "GPL-3.0-or-later",
"scripts": {
"codegen:polygon": "graph codegen subgraph.polygon.yaml --output-dir src/types/",
"codegen:xdai": "graph codegen subgraph.xdai.yaml --output-dir src/types/",
"build:polygon": "graph build subgraph.polygon.yaml",
"build:xdai": "graph build subgraph.xdai.yaml",
"create-local": "graph create 1hive/honeyswap --node http://127.0.0.1:8020",
"deploy-local:polygon": "graph deploy 1hive/honeyswap subgraph.polygon.yaml --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy-local:xdai": "graph deploy 1hive/honeyswap subgraph.xdai.yaml --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy:polygon": "graph deploy 1hive/honeyswap-polygon subgraph.polygon.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug",
"deploy:xdai": "graph deploy 1hive/honeyswap-xdai subgraph.xdai.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug",
"deploy:gnosis": "npx graph deploy --studio honeyswap-gnosis subgraph.xdai.yaml"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.37.2",
"@graphprotocol/graph-ts": "^0.29.3",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"prettier": "^1.18.2",
"typescript": "^3.5.2"
}
}