-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
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
43
44
45
46
47
48
49
50
51
52
{
"name": "morpho-blue-reallocation-bot",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"lint": "pnpm --filter '@morpho-blue-reallocation-bot/*' lint",
"prepare": "husky",
"build:config": "pnpm --filter @morpho-blue-reallocation-bot/config build",
"test:strategies": "vitest strategies",
"test:execution": "vitest execution",
"reallocate": "pnpm build:config && tsx apps/client/src/script.ts --env-file=.env"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"dependencies": {
"tsx": "^4.19.3",
"viem": "^2.23.2"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^20.9.0",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "3.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vitest": "^3.0.9"
},
"engines": {
"node": ">=18.14"
},
"pnpm": {
"overrides": {
"viem": "2.23.2"
}
},
"workspaces": [
"apps/*"
],
"packageManager": "pnpm@9.13.2+sha1.969cc200a41db98449afee1bfa7578b3ce6ff330"
}