forked from paco0x/bodhi-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
23 lines (23 loc) · 822 Bytes
/
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": "bodhi",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"build:local": "graph build --network mainnet",
"build:op": "graph build --network optimism",
"build:op-sepolia": "graph build --network optimism-sepolia",
"deploy": "graph deploy --studio bodhi --version-label $(git rev-parse --short HEAD)",
"create:local": "graph create --node http://localhost:8020/ bodhi",
"remove:local": "graph remove --node http://localhost:8020/ bodhi",
"deploy:local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 bodhi",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.63.1",
"@graphprotocol/graph-ts": "0.32.0"
},
"devDependencies": {
"matchstick-as": "0.5.0"
}
}