-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.51 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
{
"name": "balancer",
"version": "0.1.0",
"scripts": {
"codegen:arbitrum": "graph codegen --output-dir src/types/ subgraph.arbitrum.yaml",
"codegen:binance": "graph codegen --output-dir src/types/ subgraph.yaml",
"codegen:polygon": "graph codegen --output-dir src/types/ subgraph.polygon.yaml",
"auth": "graph auth",
"build:arbitrum": "graph build subgraph.arbitrum.yaml",
"build:binance": "graph build subgraph.yaml",
"build:polygon": "graph build subgraph.polygon.yaml",
"lint": "eslint --max-warnings 0 . --ext .ts",
"test": "jest ./test/*.test.ts",
"deploy:arbitrum": "graph deploy chimpytuts/darkpools-main-arbitrum subgraph.arbitrum.yaml",
"deploy:binance": "graph deploy chimpytuts/darkpools-main-binance subgraph.binance.yaml",
"deploy:polygon": "graph deploy chimpytuts/darkpools-main-polygon subgraph.polygon.yaml",
"deploy:dev": "graph deploy --studio darkpools-shared-version"
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
},
"preset": "ts-jest"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@graphprotocol/graph-cli": "^0.53.0",
"@graphprotocol/graph-ts": "^0.31.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"prettier": "^2.4.0",
"typescript": "^4.3.5"
}
}