generated from TomAFrench/subgraph-template
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
50 lines (50 loc) · 1.91 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
{
"name": "@balancer-labs/gauges-subgraph",
"version": "1.0.0",
"description": "Subgraph tracking Balancer Protocol's gauge system",
"scripts": {
"auth": "graph auth https://api.thegraph.com/deploy/",
"lint": "eslint --max-warnings 0 . --ext .ts",
"local:create": "graph create --node http://localhost:8020/ balancer-labs/gauges",
"local:remove": "graph remove --node http://localhost:8020/ balancer-labs/gauges",
"local:deploy": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 balancer-labs/gauges",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/",
"deploy:mainnet": "yarn deploy balancer-labs/balancer-gauges",
"deploy:goerli": "yarn deploy balancer-labs/gauges-goerli",
"codegen": "yarn generate-manifests && graph codegen subgraph.yaml --output-dir src/types/ && graph codegen subgraph.arbitrum.yaml --output-dir src/types/",
"generate-manifests": "ts-node ./scripts/generate-manifests",
"build": "graph build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balancer-labs/gauges-subgraph.git"
},
"contributors": [
{
"name": "Tom French",
"url": "https://github.com/tomafrench"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/balancer-labs/gauges-subgraph/issues"
},
"homepage": "https://github.com/balancer-labs/gauges-subgraph#readme",
"devDependencies": {
"@graphprotocol/graph-cli": "0.52.0",
"@graphprotocol/graph-ts": "0.31.0",
"@types/fs-extra": "^9.0.2",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^8.1.0",
"handlebars": "^4.7.6",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}