-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 2.14 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
29
30
31
32
33
34
35
{
"name": "swapr-subgraph",
"version": "1.0.0",
"repository": "https://github.com/SwaprHQ/swapr-v2-subgraph",
"license": "GPL-3.0-or-later",
"scripts": {
"codegen:mainnet": "graph codegen subgraph.mainnet.yaml --output-dir src/types/",
"codegen:gnosis": "graph codegen subgraph.gnosis.yaml --output-dir src/types/",
"codegen:arbitrum": "graph codegen subgraph.arbitrum-one.yaml --output-dir src/types/",
"codegen:rinkeby": "graph codegen subgraph.rinkeby.yaml --output-dir src/types/",
"build:mainnet": "graph build subgraph.mainnet.yaml",
"build:gnosis": "graph build subgraph.gnosis.yaml",
"build:arbitrum": "graph build subgraph.arbitrum-one.yaml",
"build:rinkeby": "graph build subgraph.rinkeby.yaml",
"create-local": "graph create nicoelzer/swapr --node http://127.0.0.1:8020",
"deploy-local:mainnet": "graph deploy nicoelzer/swapr subgraph.rinkeby.yaml --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy-local:gnosis": "graph deploy nicoelzer/swapr subgraph.gnosis.yaml --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy-local:arbitrum": "graph deploy nicoelzer/swapr subgraph.arbitrum-one.yaml --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy-local:rinkeby": "graph deploy nicoelzer/swapr subgraph.rinkeby.yaml --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy:gnosis": "graph deploy --studio swapr-v2-gnosis subgraph.gnosis.yaml",
"deploy:arbitrum": "graph deploy --studio swapr-v2-arbitrum subgraph.arbitrum-one.yaml",
"deploy:mainnet": "graph deploy --studio swapr-v2-mainnet subgraph.mainnet.yaml",
"deploy:rinkeby": "graph deploy swapr-v2 subgraph.rinkeby.yaml --studio swapr-v2 --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.77.0",
"@graphprotocol/graph-ts": "^0.35.1",
"@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"
}
}