-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
68 lines (68 loc) · 2.87 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "gtcr-subgraph",
"version": "1.0.0",
"description": "Subgraph for Generalized TCR contracts",
"scripts": {
"fix-schema.ts": "replace-in-file '/(;\\s*if \\()value === null/mg' '$1value === null || value.kind === ValueKind.NULL' generated/schema.ts --isRegex",
"codegen:xdai": "node render-templates.js xdai && graph codegen && yarn fix-schema.ts",
"build:xdai": "yarn codegen:xdai && graph build",
"publish:xdai": "yarn build:xdai && graph deploy --product hosted-service kleros/legacy-curate-xdai",
"codegen:mainnet": "node render-templates.js mainnet && graph codegen && yarn fix-schema.ts",
"build:mainnet": "yarn codegen:mainnet && graph build",
"publish:mainnet": "yarn build:mainnet && graph deploy --product hosted-service kleros/curate",
"codegen:goerli": "node render-templates.js goerli && graph codegen && yarn fix-schema.ts",
"build:goerli": "yarn codegen:goerli && graph build",
"publish:goerli": "yarn build:goerli && graph deploy --product hosted-service kleros/curate-goerli",
"codegen:sepolia": "node render-templates.js sepolia && graph codegen && yarn fix-schema.ts",
"build:sepolia": "yarn codegen:sepolia && graph build",
"publish:sepolia": "yarn build:sepolia && graph deploy --studio kleros/curate-sepolia",
"lint:eslint": "eslint . --ext .ts,.tsx",
"lint:prettier": "prettier --config .prettierrc 'src/**/*.ts' --check",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:secrets",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write && eslint . --ext .ts,.tsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kleros/gtcr-subgraph.git"
},
"author": "Kleros",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/kleros/gtcr-subgraph/issues"
},
"homepage": "https://github.com/kleros/gtcr-subgraph#readme",
"devDependencies": {
"@assemblyscript/loader": "^0.14.11",
"@assemblyscript/node": "github:AssemblyScript/node",
"@gnosis.pm/truffle-nice-tools": "^1.3.1",
"@graphprotocol/graph-cli": "^0.71.0",
"@graphprotocol/graph-ts": "^0.35.1",
"@kleros/erc-792": "3.0.0",
"@kleros/gtcr-encoder": "^1.1.3",
"@kleros/tcr": "^2.0.0",
"@truffle/contract": "^4.2.22",
"@truffle/hdwallet-provider": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"assemblyscript": "^0.14.11",
"delay": "^4.4.0",
"dotenv-safe": "^8.2.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"ethers": "^5.0.14",
"fs-extra": "^9.0.1",
"mocha": "^8.1.3",
"mocha-steps": "^1.3.0",
"mustache": "^4.0.1",
"replace-in-file": "^6.1.0",
"should": "^13.2.3",
"typescript": "^4.3.5",
"wait-on": "^5.2.0"
},
"volta": {
"node": "20.11.0",
"yarn": "1.22.19"
}
}