forked from solendprotocol/liquidator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
{
"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": {
"@project-serum/sol-wallet-adapter": "^0.2.0",
"@pythnetwork/client": "^2.0.0",
"@solana/spl-token": "^0.1.4",
"@solana/spl-token-registry": "^0.2.114",
"@solana/web3.js": "=1.21.0",
"@solendprotocol/common": "1.0.20",
"bignumber.js": "^9.0.1",
"bn.js": "^5.2.0",
"bs58": "^4.0.1",
"buffer-layout": "^1.2.1",
"dotenv": "^10.0.0",
"hot-shots": "^8.5.0",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"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": "^3.9.9"
}
}