-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.39 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
{
"name": "subgraphs",
"private": true,
"scripts": {
"prepare": "husky",
"postinstall": "yarn run --silent configure 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",
"configure": "./bin/prepare.sh "
},
"main": "./bin/index.js",
"bin": {
"subgraph-cli": "./bin/index.js"
},
"license": "MIT",
"devDependencies": {
"@graphprotocol/graph-cli": "^0.90.1",
"@graphprotocol/graph-ts": "^0.35.1",
"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",
"source-map-support": "^0.5.21",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{ts,js,json,yaml,yml,md,graphql}": "prettier --write"
},
"packageManager": "yarn@1.22.22"
}