-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
23 lines (23 loc) · 1.07 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
{
"name": "network-monitoring-subgraph",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ network-monitoring-subgraph",
"create-local": "graph create --node http://localhost:8020/ network-monitoring-subgraph",
"remove-local": "graph remove --node http://localhost:8020/ network-monitoring-subgraph",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 network-monitoring-subgraph",
"test": "yarn && yarn codegen && graph test",
"deploy-arbitrum-sepolia": "yarn && yarn codegen && graph build --network arbitrum-sepolia && graph deploy --studio graph-monitoring-arb-sepolia",
"deploy-arbitrum": "yarn && yarn codegen && graph build --network arbitrum-one && graph deploy --studio graph-monitoring-arbitrum"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.71.0",
"@graphprotocol/graph-ts": "0.30.0"
},
"devDependencies": {
"matchstick-as": "0.5.0",
"mustache": "^4.2.0"
}
}