-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "liquity-liqbot",
"version": "0.0.0-semantic-release",
"description": "Simple liquidation bot for Liquity",
"keywords": [
"Liquity",
"protocol",
"DeFi",
"Ethereum"
],
"homepage": "https://github.com/liquity/liqbot",
"author": "Daniel Simon <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node --loader ts-node/esm src/index.ts",
"deploy": "node --loader ts-node/esm scripts/deploy.ts",
"postinstall": "run-s postinstall:*",
"postinstall:config": "node --loader ts-node/esm scripts/initConfig.ts",
"postinstall:contracts": "yarn --cwd contracts install"
},
"dependencies": {
"@flashbots/ethers-provider-bundle": "^0.4.2",
"@liquity/lib-base": "^3.0.0",
"@liquity/lib-ethers": "^3.3.1",
"@liquity/providers": "^1.0.1",
"chalk": "^5.0.0",
"ethers": "^5.5.2",
"ws": "^8.3.0"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
}
}