forked from mars-protocol/multichain-liquidator-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.79 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": "liquidator",
"version": "1.0.0",
"description": "Dispatches liquidation transactions for unhealthy positions on mars protocol",
"main": "index.ts",
"license": "MIT",
"scripts": {
"test:integration": "yarn build && node build/test/redbank/integration/liquidationTest",
"test:rover-integration": "yarn build && node build/test/rover/integration/liquidationTest",
"build": "tsc",
"start": "yarn build && node build/src/main",
"test": "jest",
"lint": "yarn format-check && eslint . && yarn build",
"format": "prettier --write .",
"format-check": "prettier --ignore-path .gitignore --check ."
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.188.0",
"@cosmjs/amino": "^0.32.2",
"@cosmjs/cosmwasm-stargate": "^0.32.2",
"@cosmjs/crypto": "0.32.2",
"@cosmjs/proto-signing": "^0.32.2",
"@cosmjs/stargate": "^0.32.2",
"@cosmology/core": "^1.10.0",
"@keplr-wallet/unit": "0.10.24-ibc.go.v7.hot.fix",
"@osmosis-labs/math": "^5.1.0",
"@types/lodash": "^4.14.191",
"big-integer": "^1.6.51",
"bignumber": "^1.1.0",
"bignumber.js": "^9.1.0",
"camelcase-keys": "^8.0.2",
"cross-fetch": "^3.1.5",
"csv-writer": "^1.6.0",
"dotenv": "^16.0.2",
"lodash": "^4.17.21",
"marsjs-types": "^1.0.6",
"osmojs": "^16.5.1",
"redis": "^4.3.0",
"request": "^2.88.2",
"requests": "^0.3.0",
"ts-node": "^10.9.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-jest": "^29.4.3",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"fetch-mock": "^9.11.0",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
}
}