This repository has been archived by the owner on May 17, 2022. It is now read-only.
forked from Rari-Capital/fuse-liquidator-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.5 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
{
"name": "fuse-liquidator-bot",
"version": "1.0.2",
"description": "Liquidates unhealthy Fuse pool loans.",
"main": "index.js",
"scripts": {
"pm2": "NODE_ENV=production pm2 start build/server.js --watch -i max",
"pm2:staging": "NODE_ENV=staging pm2 start build/server.js --watch -i max",
"prod": "NODE_ENV=production node build/server.js",
"staging": "NODE_ENV=staging node build/server.js",
"dev": "HTTPS=true NODE_ENV=development ts-node-dev --inspect --respawn src/server.ts",
"test": "NODE_ENV=test nyc ./node_modules/.bin/mocha --require ts-node/register ./src/test/**/**/**/**/*.test.ts",
"build": "rimraf build && tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/Rari-Capital/fuse-liquidator-bot.git"
},
"author": "David Lucid <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Midas-Capital/fuse-liquidator-bot/issues"
},
"homepage": "https://github.com/Midas-Capital/fuse-liquidator-bot#readme",
"dependencies": {
"@midas-capital/sdk": "0.2.1",
"axios": "^0.21.1",
"dotenv": "^16.0.0",
"ethers": "^5.6.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.1",
"eslint": "8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "2.5.1",
"ts-node": "^10.4.0",
"typescript": "4.5.5"
}
}