forked from kleros/kleros-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.55 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
{
"name": "@kleros/kleros-v2-subgraph",
"license": "MIT",
"scripts": {
"update:arbitrum-goerli": "./scripts/update.sh arbitrumGoerli arbitrum-goerli",
"update:arbitrum": "./scripts/update.sh arbitrum arbitrum",
"codegen": "graph codegen",
"build": "graph build",
"deploy:arbitrum-goerli": "graph deploy --product hosted-service kleros/kleros-v2-core-arbitrum-goerli",
"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": "./scripts/update.sh localhost mainnet && 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.18.1",
"yarn": "3.3.1"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.31.0"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.51.2",
"@kleros/kleros-v2-eslint-config": "workspace:^",
"@kleros/kleros-v2-prettier-config": "workspace:^",
"gluegun": "^5.1.2"
}
}