forked from kleros/kleros-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 2.02 KB
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
{
"name": "@kleros/kleros-v2-subgraph",
"license": "MIT",
"scripts": {
"update:arbitrum-goerli": "./scripts/update.sh arbitrumGoerli arbitrum-goerli",
"update:arbitrum-goerli-devnet": "./scripts/update.sh arbitrumGoerliDevnet arbitrum-goerli",
"update:arbitrum": "./scripts/update.sh arbitrum arbitrum",
"update:local": "./scripts/update.sh localhost mainnet",
"codegen": "graph codegen",
"build": "graph build",
"clean": "graph clean && rm subgraph.yaml.bak.*",
"deploy:arbitrum-goerli": "graph deploy --product hosted-service kleros/kleros-v2-core-arbitrum-goerli",
"deploy:arbitrum-goerli-devnet": "graph deploy --product hosted-service kleros/kleros-v2-core-devnet",
"deploy:arbitrum": "graph deploy --product hosted-service kleros/kleros-v2-core-arbitrum",
"create-local": "graph create --node http://localhost:8020/ kleros/kleros-v2-core-local",
"remove-local": "graph remove --node http://localhost:8020/ kleros/kleros-v2-core-local",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 kleros/kleros-v2-core-local --version-label v$(date +%s)",
"rebuild-deploy-local": "yarn update:local && yarn codegen && yarn create-local && yarn deploy-local",
"start-local-indexer": "docker compose -f ../services/graph-node/docker-compose.yml up -d && docker compose -f ../services/graph-node/docker-compose.yml logs -f",
"stop-local-indexer": "docker compose -f ../services/graph-node/docker-compose.yml down && rm -rf ../services/graph-node/data"
},
"volta": {
"node": "16.20.1",
"yarn": "3.3.1"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.31.0"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.52.0",
"@kleros/kleros-v2-eslint-config": "workspace:^",
"@kleros/kleros-v2-prettier-config": "workspace:^",
"gluegun": "^5.1.2"
},
"dependenciesComments": {
"@graphprotocol/graph-cli": "pinned because of this issue: https://github.com/graphprotocol/graph-tooling/issues/1399#issuecomment-1676104540"
}
}