-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.03 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@gearbox-protocol/liquidator-v2",
"description": "Gearbox liquidation bot",
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"clean": "rm -rf build",
"build": "node esbuild.config.mjs",
"start": "tsx --env-file .env src/index.ts | pino-pretty --colorize",
"prepare": "husky",
"prettier": "prettier --write .",
"prettier:ci": "npx prettier --check .",
"lint": "eslint \"**/*.ts\" --fix",
"lint:ci": "eslint \"**/*.ts\"",
"typecheck:ci": "tsc --noEmit",
"test": "vitest"
},
"dependencies": {
"node-pty": "^1.0.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.713.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@flashbots/ethers-provider-bundle": "^1.0.0",
"@gearbox-protocol/eslint-config": "2.0.0-next.2",
"@gearbox-protocol/liquidator-v2-contracts": "^2.2.2",
"@gearbox-protocol/prettier-config": "2.0.0",
"@gearbox-protocol/sdk-gov": "^2.33.0",
"@gearbox-protocol/types": "^1.13.1",
"@redstone-finance/evm-connector": "^0.7.3",
"@types/node": "^22.10.2",
"@uniswap/sdk-core": "^5.9.0",
"@uniswap/v3-sdk": "^3.19.0",
"@vlad-yakovlev/telegram-md": "^2.0.0",
"abitype": "^1.0.7",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"date-fns": "^4.1.0",
"di-at-home": "^0.0.7",
"dotenv": "^16.4.7",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"ethers": "^6.13.4",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"nanoid": "^5.0.9",
"node-pty": "^1.0.0",
"pino": "^9.5.0",
"prettier": "^3.4.2",
"redstone-protocol": "^1.0.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"viem": "^2.21.55",
"vitest": "^2.1.8"
},
"prettier": "@gearbox-protocol/prettier-config",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": "prettier --write"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}