-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
34 lines (34 loc) · 1.19 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
{
"name": "@kleros/vea-relayer-subgraph-inbox",
"version": "0.2.3",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "22.14.0",
"yarn": "4.6.0"
},
"scripts": {
"update:arbitrum-sepolia": "./scripts/update.sh arbitrumSepolia arbitrum-sepolia",
"update:arbitrum": "./scripts/update.sh arbitrum arbitrum-one",
"clean": "graph clean; rm -f subgraph.yaml.bak.*",
"codegen": "graph codegen",
"build": "graph build",
"deploy:arbitrum-sepolia": "graph deploy vea-inbox-arb-sepolia -l v$npm_package_version",
"deploy:arbitrum": "graph deploy vea-inbox-arbitrum -l v$npm_package_version",
"create-local": "graph create --node http://localhost:8020/ kleros/vea-validator-inbox",
"remove-local": "graph remove --node http://localhost:8020/ kleros/vea-validator-inbox",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 kleros/vea-validator-inbox",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.38.0"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.96.0",
"concat-stream": "^2.0.0",
"gluegun": "^5.1.2",
"matchstick-as": "0.5.2"
}
}