-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.77 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
{
"name": "aave-subgraph",
"version": "1.0.0",
"description": "Subgraph for Aave protocol",
"scripts": {
"test": "jest",
"dev-environment": "npm i && tail -f /dev/null",
"build": "graph build",
"prepare": "mustache ./config/${TYPE:-raw}.json ./config/${NETWORK:-dev}.json | mustache - subgraph.template.yaml > subgraph.yaml",
"codegen-raw": "TYPE=raw npm run prepare && graph codegen --output-dir ./raw/generated",
"create-local": "graph create abigger87/aave-subgraph --node http://graph-node:8020",
"deploy-local-raw": "TYPE=raw npm run prepare && graph deploy abigger87/aave-subgraph --ipfs http://graph-ipfs:5001 --node http://graph-node:8020",
"deploy-remote": "npm run prepare && graph deploy aave/${NAME:-null} --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-multy-ropsten-raw": "NETWORK=ropsten TYPE=raw NAME=protocol-multy-ropsten-raw npm run deploy-remote",
"deploy-multy-kovan-raw": "NETWORK=kovan TYPE=raw NAME=protocol-multy-kovan-raw npm run deploy-remote",
"deploy-multy-main-raw": "NETWORK=mainnet TYPE=raw NAME=protocol-multy-raw npm run deploy-remote"
},
"repository": "https://github.com/nascentxyz/aave-subgraph",
"author": "Andreas Bigger <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/node": "12.6.8",
"ethers": "^4.0.40",
"ts-node": "8.3.0",
"typescript": "3.5.3"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.18.0",
"@graphprotocol/graph-ts": "^0.18.1",
"@types/jest": "^24.0.23",
"ganache-cli": "^6.7.0",
"jest": "^24.9.0",
"mustache": "^3.1.0",
"prettier": "^1.18.2",
"ts-jest": "^24.2.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1"
}
}