forked from Uniswap/v2-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.27 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": "pegasys-subgraph",
"version": "1.0.0",
"repository": "https://github.com/graphprotocol/v2-subgraph",
"license": "GPL-3.0-or-later",
"scripts": {
"lint": "eslint . --ext .ts --fix",
"codegen": "graph codegen --output-dir src/types/",
"build": "graph build",
"create": "graph create pollum-io/pegasys --node https://rollux.graph.pegasys.fi/deploy",
"deploy-local": "graph deploy pollum-io/pegasys --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"watch-local": "graph deploy pollum-io/pegasys --watch --debug --node http://127.0.0.1:8020/ --ipfs http://localhost:5001",
"deploy": "graph deploy --node https://rollux.graph.pegasys.fi/deploy --ipfs https://rollux.ipfs.pegasys.fi/ pollum-io/pegasys",
"remove": "graph remove --node https://rollux.graph.pegasys.fi/deploy --ipfs https://rollux.ipfs.pegasys.fi/ pollum-io/pegasys"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.64.1",
"@graphprotocol/graph-ts": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"@uniswap/eslint-config": "^1.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^6.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"typescript": "^3.5.2"
}
}