forked from blocklytics/ethereum-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·28 lines (28 loc) · 1.52 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
{
"name": "boba-blocks",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare:boba:mainnet": "mustache config/boba-mainnet.json subgraph.template.yaml > subgraph.yaml",
"prepare:boba:rinkeby": "mustache config/boba-rinkeby.json subgraph.template.yaml > subgraph.yaml",
"create:boba:mainnet": "graph create --node https://graph.mainnet.boba.network:8020 shibui/boba-blocks",
"create:boba:rinkeby": "graph create --node https://graph.rinkeby.boba.network:8020 shibui/boba-blocks",
"create:local": "graph create --node http://localhost:8020/ shibui/boba-blocks",
"deploy:boba:mainnet": "graph deploy --ipfs https://graph.mainnet.boba.network:5001 --node https://graph.mainnet.boba.network:8020 shibui/boba-blocks",
"deploy:boba:rinkeby": "graph deploy --ipfs https://graph.rinkeby.boba.network:5001 --node https://graph.rinkeby.boba.network:8020 shibui/boba-blocks",
"deploy:local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 shibui/boba-blocks",
"remove:boba:mainnet": "graph remove --node https://graph.mainnet.boba.network:8020 shibui/boba-blocks",
"remove:boba:rinkeby": "graph remove --node https://graph.rinkeby.boba.network:8020 shibui/boba-blocks",
"remove:local": "graph remove --node http://localhost:8020/ shibui/boba-blocks"
},
"devDependencies": {
"mustache": "^4.2.0"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.17.1",
"@graphprotocol/graph-ts": "0.17.0"
},
"resolutions": {
"colors": "1.4.0"
}
}