-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
26 lines (26 loc) · 1.33 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
{
"name": "apeswap-subgraph",
"version": "1.0.0",
"repository": "https://github.com/ApeSwapFinance/apeswap-subgraph",
"license": "GPL-3.0-or-later",
"scripts": {
"codegen": "graph codegen --output-dir src/types/",
"build": "graph build",
"create-local": "graph create ape-swap/apeswap-subgraph --node http://127.0.0.1:8020",
"deploy-local": "graph deploy ape-swap/apeswap-subgraph --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"create-remote": "graph create ape-swap/apeswap-subgraph --node http://188.34.132.202:8020",
"deploy": "graph deploy ape-swap/apeswap-subgraph --ipfs http://161.97.117.103:5001/ --node http://188.34.132.202:8020/ --debug",
"deploy-staging": "graph deploy $THE_GRAPH_GITHUB_USER/$THE_GRAPH_SUBGRAPH_NAME /ApeSwap --ipfs https://api.staging.thegraph.com/ipfs/ --node https://api.staging.thegraph.com/deploy/",
"watch-local": "graph deploy graphprotocol/ApeSwap2 --watch --debug --node http://127.0.0.1:8020/ --ipfs http://localhost:5001"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.20.0",
"@graphprotocol/graph-ts": "^0.20.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}