forked from sushiswap/sushiswap-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 2.7 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
44
45
{
"name": "swipeswap",
"license": "MIT",
"version": "0.0.2",
"author": "SwipeSwap",
"scripts": {
"codegen": "graph codegen",
"codegen:bar": "graph codegen subgraphs/bar.yaml",
"codegen:exchange": "graph codegen subgraphs/exchange.yaml",
"codegen:maker": "graph codegen subgraphs/maker.yaml",
"codegen:swipeswap": "graph codegen subgraphs/swipeswap.yaml",
"codegen:lockup": "graph codegen subgraphs/lockup.yaml",
"codegen:timelock": "graph codegen subgraphs/timelock.yaml",
"codegen:dexcandles": "graph codegen subgraphs/dexcandles.yaml",
"build": "graph build",
"build:bar": "graph build subgraphs/bar.yaml",
"build:exchange": "graph build subgraphs/exchange.yaml",
"build:maker": "graph build subgraphs/maker.yaml",
"build:swipeswap": "graph build subgraphs/swipeswap.yaml",
"build:lockup": "graph build subgraphs/lockup.yaml",
"build:timelock": "graph build subgraphs/timelock.yaml",
"build:dexcandles": "graph build subgraphs/dexcandles.yaml",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/",
"deploy:bar": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ swipewallet/swipe-bar subgraphs/bar.yaml",
"deploy:exchange": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ swipewallet/exchange subgraphs/exchange.yaml",
"deploy:maker": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ swipewallet/swipe-maker subgraphs/maker.yaml",
"deploy:swipeswap": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ swipewallet/swipeswap subgraphs/swipeswap.yaml",
"deploy:timelock": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ swipewallet/swipe-timelock subgraphs/timelock.yaml",
"deploy:dexcandles": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ swipewallet/dexcandles subgraphs/dexcandles.yaml",
"create-local": "graph create --node http://localhost:8020/ /swipewallet/swipeswap",
"remove-local": "graph remove --node http://localhost:8020/ /swipewallet/swipeswap",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 /swipewallet/swipeswap"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.19.0",
"@graphprotocol/graph-ts": "^0.19.0",
"@swipeswap/core": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.0.0",
"prettier": "^2.0.0",
"typescript": "^4.0.0"
}
}