-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.49 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
{
"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",
"create": "graph create symmetric/telos-gauges --node https://thegraph.symm.fi/deploy",
"create:meter": "graph create --node http://graph.meter.io:8020/ symmetric-meter-gauges",
"deploy": "graph deploy symmetric/telos-gauges subgraph.telos.yaml --ipfs http://thegraph.symm.fi:5001 --node https://thegraph.symm.fi/deploy",
"deploy:meter": "graph deploy symmetric-meter-gauges subgraph.meter.yaml --node http://graph.meter.io:8020/ --ipfs http://graph.meter.io:5001",
"deploy:telos": "goldsky subgraph deploy symmetric-telos-gauges/1.0.8",
"deploy:mainnet": "yarn deploy balancer-labs/balancer-gauges",
"deploy:goerli": "yarn deploy balancer-labs/gauges-goerli",
"deploy:telosTestnet": "goldsky subgraph deploy symmetric/gauges-telos-testnet",
"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 subgraph.meter.yaml"
},
"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"
}
}