forked from frosty720/kusd-keeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (53 loc) · 1.29 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
53
{
"name": "kusd-keeper",
"version": "1.0.0",
"description": "KUSD Auction Keeper - Liquidation and auction participation bot for KalyChain",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"kick-only": "ts-node src/index.ts --mode kick",
"bid-only": "ts-node src/index.ts --mode bid",
"monitor": "ts-node src/utils/monitor.ts"
},
"keywords": [
"keeper",
"auction",
"liquidation",
"defi",
"stablecoin",
"kusd",
"kalychain",
"makerdao"
],
"author": "KUSD Team",
"license": "MIT",
"dependencies": {
"ethers": "^6.8.0",
"dotenv": "^16.3.1",
"winston": "^3.10.0",
"node-cron": "^3.0.2",
"axios": "^1.5.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/node-cron": "^3.0.8",
"typescript": "^5.0.0",
"ts-node": "^10.9.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.0",
"ts-jest": "^29.1.0"
},
"engines": {
"node": ">=16.0.0"
}
}