forked from beefyfinance/cowcentrated-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.42 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
35
36
37
38
39
40
41
42
{
"name": "subgraphs",
"private": true,
"scripts": {
"prepare": "husky",
"postinstall": "yarn run --silent prepare:arbitrum && yarn run --silent codegen",
"codegen": "rm -Rf generated && graph codegen",
"build": "graph build",
"format": "prettier . --write",
"test": "yarn run --silent test:lint && yarn run --silent test:unit",
"test:unit": "graph test",
"test:lint": "prettier . --check",
"infra:start": "docker compose up -d",
"infra:stop": "docker compose down",
"create-local": "graph create beefyfinance/beefy-cl --node http://127.0.0.1:8020",
"deploy-local": "graph deploy beefyfinance/beefy-cl --node http://127.0.0.1:8020 --ipfs http://localhost:5001",
"remove-local": "graph remove beefyfinance/beefy-cl --node http://127.0.0.1:8020",
"prepare:arbitrum": "./bin/prepare.sh arbitrum",
"prepare:base": "./bin/prepare.sh base",
"prepare:optimism": "./bin/prepare.sh optimism"
},
"main": "./bin/index.js",
"bin": {
"subgraph-cli": "./bin/index.js"
},
"license": "MIT",
"devDependencies": {
"@graphprotocol/graph-cli": "^0.69.2",
"@graphprotocol/graph-ts": "^0.34.0",
"assemblyscript-prettier": "^3.0.1",
"husky": "^9.0.11",
"lint-staged": ">=10",
"matchstick-as": "^0.6.0",
"mustache": "^4.2.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {},
"lint-staged": {
"*.--check": "prettier --write"
}
}