-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 902 Bytes
/
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
{
"name": "traderjoe-liquidation-bot",
"version": "1.0.0",
"description": "1. Identity underwater accounts (0 < health < 1) using subgraph: https://thegraph.com/hosted-service/subgraph/traderjoe-xyz/lending",
"main": "identify-underwater-accounts.js",
"scripts": {
"start": "tsc && node dist/app.js",
"print": "tsc && node dist/app.js --print-low-health-accounts",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.4.16",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"graphql": "^15.6.1",
"web3": "^1.6.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "2.4.1",
"ts-node": "^10.4.0",
"tslint": "^5.20.1",
"typescript": "^3.9.10"
}
}