-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 3.41 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
36
37
38
39
40
41
42
43
{
"name": "swapr-subgraph",
"version": "1.0.0",
"repository": "https://github.com/nicoelzer/swapr-subgraph",
"license": "GPL-3.0-or-later",
"scripts": {
"codegen:mainnet": "graph codegen --output-dir src/types/",
"codegen:rinkeby": "graph codegen subgraph.rinkeby.yaml --output-dir src/types/",
"codegen:xdai": "graph codegen subgraph.xdai.yaml --output-dir src/types/",
"codegen:arbitrum-one": "graph codegen subgraph.arbitrum-one-old.yaml --output-dir src/types/",
"codegen:arbitrum-one-v2": "graph codegen subgraph.arbitrum-one.yaml --output-dir src/types/",
"codegen:arbitrum-rinkeby": "graph codegen subgraph.arbitrum-rinkeby.yaml --output-dir src/types/",
"build:mainnet": "graph build",
"build:rinkeby": "graph build subgraph.rinkeby.yaml",
"build:xdai": "graph build subgraph.xdai.yaml",
"build:arbitrum-one": "graph build subgraph.arbitrum-one-old.yaml",
"build:arbitrum-one-v2": "graph build subgraph.arbitrum-one.yaml",
"build:arbitrum-rinkeby": "graph build subgraph.arbitrum-rinkeby.yaml",
"create-local": "graph create nicoelzer/swapr --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-local:mainnet": "graph deploy nicoelzer/swapr subgraph.rinkeby.yaml --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy-local:xdai": "graph deploy nicoelzer/swapr subgraph.xdai.yaml --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy-local:arbitrum-one": "graph deploy nicoelzer/swapr subgraph.arbitrum-one-old.yaml --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy-local:arbitrum-one-v2": "graph deploy nicoelzer/swapr subgraph.arbitrum-one.yaml --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy:rinkeby": "graph deploy luzzif/swapr-rinkeby-new subgraph.rinkeby.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug",
"deploy:xdai": "graph deploy luzzif/swapr-xdai-v2 subgraph.xdai.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug",
"deploy:mainnet": "graph deploy luzzif/swapr-mainnet-v2 subgraph.mainnet.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug",
"deploy:arbitrum-one": "graph deploy luzzif/swapr-arbitrum-one subgraph.arbitrum-one-old.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug",
"deploy:arbitrum-one-v2": "graph deploy luzzif/swapr-arbitrum-one-v2 subgraph.arbitrum-one.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug",
"deploy:arbitrum-one-v3": "graph deploy luzzif/swapr-arbitrum-one-v3 subgraph.arbitrum-one.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug",
"deploy:arbitrum-rinkeby": "graph deploy luzzif/swapr-arbitrum-rinkeby-v2 subgraph.arbitrum-rinkeby.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.19.0",
"@graphprotocol/graph-ts": "^0.19.0",
"@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"
}
}