This repository has been archived by the owner on Oct 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
70 lines (70 loc) · 2.12 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
70
{
"name": "solend-liquidator",
"version": "1.0.0",
"description": "liquidation bot for solend",
"main": "build/index.js",
"scripts": {
"build": "rm -rf build/ && tsc -p tsconfig.json",
"start": "ts-node -r tsconfig-paths/register build/liquidate.js",
"lint": "eslint . --ext .js --ext .tsx,.ts,.js,.jsx src/ --fix .gitignore",
"compose-clean": "docker-compose rm -f"
},
"keywords": [
"solend",
"liquidation",
"bot",
"defi",
"solana"
],
"license": "ISC",
"dependencies": {
"@hubbleprotocol/hubble-config": "^1.0.127",
"@hubbleprotocol/kamino-sdk": "^1.0.131",
"@jup-ag/core": "=1.0.0-beta.22",
"@project-serum/anchor": "^0.25.0",
"@project-serum/sol-wallet-adapter": "^0.2.0",
"@pythnetwork/client": "^2.0.0",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token-v2": "npm:@solana/spl-token@^0.2.0",
"@solana/spl-token": "^0.1.4",
"@solana/spl-token-registry": "^0.2.114",
"@solana/web3.js": "^1.53.0",
"@switchboard-xyz/sbv2-lite": "^0.1.0",
"@switchboard-xyz/switchboard-api": "^0.2.160",
"bignumber.js": "^9.0.1",
"bn.js": "^5.2.0",
"bs58": "^4.0.1",
"buffer-layout": "^1.2.1",
"dotenv": "^10.0.0",
"ggoldca-sdk": "^0.0.17",
"got": "^9.6.0",
"hot-shots": "^8.5.0",
"js-sha256": "^0.9.0",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"snake-case": "^3.0.4",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"underscore": "^1.13.1"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jest": "^26.3.0",
"jest-junit": "^10.0.0",
"nodemon": "^1.19.4",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"typescript": "^4.4.4"
}
}