-
Notifications
You must be signed in to change notification settings - Fork 570
/
package.json
57 lines (57 loc) · 2.05 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "aave-protocol-subgraph",
"version": "1.0.0",
"description": "This package contains subgraph of the 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 aave/protocol --node http://graph-node:8020",
"deploy-local-raw": "TYPE=raw npm run prepare && graph deploy aave/protocol --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": {
"type": "git",
"url": "git@github.com:aave/aave-protocol.git"
},
"author": "AAVE <tech@aave.com>",
"contributors": [
{
"name": "Andrey Kozlov",
"email": "andrey@aave.com"
},
{
"name": "Emilio Frangella",
"email": "emilio@aave.com"
},
{
"name": "Ernesto Boado",
"email": "ernesto@aave.com"
}
],
"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",
"jest": "^24.9.0",
"ganache-cli": "^6.7.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"
}
}