forked from aave/protocol-subgraphs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.36 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
{
"name": "lending-subgraphs",
"version": "1.0.0",
"description": "This package contains subgraphs of the Pegasys Lending",
"scripts": {
"generate:schema": "cp ./schemas/v3.schema.graphql schema.graphql",
"prepare:subgraph": "mustache ./config/syscoin-v3.json ./templates/v3.subgraph.template.yaml > subgraph.yaml && rm -rf generated && npm run generate:schema && npm run subgraph:codegen && npm run subgraph:build",
"subgraph:codegen": "graph codegen --output-dir ./generated",
"subgraph:build": "graph build",
"subgraph:deploy:hosted": "graph deploy $SLUG --ipfs https://rollux.ipfs.pegasys.fi/ --node https://rollux.graph.pegasys.fi/deploy",
"deploy:hosted:rollux-v3": "VERSION=v3 BLOCKCHAIN=v3 NETWORK=syscoin npm run prepare:subgraph && SLUG=pollum-io/pegasys-lending npm run subgraph:deploy:hosted"
},
"repository": {
"type": "git",
"url": "https://github.com/pegasys-fi/lending-subgraph"
},
"author": "Pegasys>",
"license": "MIT",
"dependencies": {
"@graphprotocol/graph-cli": "^0.51.2",
"@graphprotocol/graph-ts": "^0.31.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"env-cmd": "^10.1.0",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"lint-staged": "^9.2.5",
"mustache": "^3.1.0",
"prettier": "^1.18.2",
"typescript": "3.5.3"
}
}