-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
22 lines (22 loc) · 1.01 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
{
"name": "uniswap-v3-subgraph",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen --output-dir src/types/",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ codingnirvana/uniswap-v3-subgraph",
"create-local": "graph create --node http://localhost:8020/ codingnirvana/uniswap-v3-subgraph",
"remove-local": "graph remove --node http://localhost:8020/ codingnirvana/uniswap-v3-subgraph",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 codingnirvana/uniswap-v3-subgraph"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.20.1",
"@graphprotocol/graph-ts": "git://github.com/graphprotocol/graph-ts#2f628dfbce14adc40bab35d66604c4c7a2e6b46c",
"@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"
}
}