-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.3 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": "beefy-balances-subgraph",
"private": true,
"scripts": {
"postinstall": "yarn run --silent configure linea && 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": "echo 'No unit tests defined'",
"test:lint": "prettier . --check",
"test:config": "ts-node --project tsconfig.scripts.json ./bin/check-config.ts; yarn format",
"update:addressbook": "ncu --upgrade blockchain-addressbook viem && yarn install",
"configure": "./bin/prepare.sh "
},
"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",
"@types/lodash": "^4.17.7",
"assemblyscript-prettier": "^3.0.1",
"blockchain-addressbook": "^0.47.117",
"husky": ">=7",
"lint-staged": ">=10",
"lodash": "^4.17.21",
"matchstick-as": "^0.6.0",
"mustache": "^4.2.0",
"npm-check-updates": "^17.1.13",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {},
"lint-staged": {
"*.--check": "prettier --write"
},
"packageManager": "yarn@1.22.22"
}