-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
31 lines (31 loc) · 1.09 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/veascan-subgraph-outbox",
"version": "0.2.3",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "22.14.0",
"yarn": "4.6.0"
},
"scripts": {
"update:sepolia": "./scripts/update.sh sepolia sepolia",
"update:chiado": "./scripts/update.sh chiado chiado",
"codegen": "graph codegen",
"build": "graph build",
"deploy:sepolia": "yarn build:sepolia && yarn graph deploy --studio veascan-outbox-arb-sep-devnet",
"build:chiado": "yarn update:chiado && graph build",
"deploy:chiado": "yarn build:chiado && goldsky subgraph deploy kleros-veascan-outbox-chiado/latest",
"create-local": "graph create --node http://localhost:8020/ kleros/veascan-outbox",
"remove-local": "graph remove --node http://localhost:8020/ kleros/veascan-outbox",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 kleros/veascan-outbox"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.38.0"
},
"devDependencies": {
"@goldskycom/cli": "^1.6.0",
"@graphprotocol/graph-cli": "^0.96.0"
}
}