-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
{
"name": "@hifi/liquidator-js",
"description": "Utility for automatically liquidating underwater accounts in Hifi",
"version": "1.2.0",
"author": {
"name": "Hifi",
"email": "contact@hifi.finance",
"url": "https://hifi.finance"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"ethereum-waffle": "^4.0.10",
"hardhat": "^2.19.4",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"mocha": "^10.2.0",
"pinst": "^3.0.0",
"prettier": "^3.0.3",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"license": "MIT",
"main": "./dist",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --build tsconfig.prod.json",
"clean": "shx rm -rf ./dist",
"commit": "git-cz",
"lint": "yarn run lint:ts && yarn run prettier:check",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"prettier": "prettier --config ./.prettierrc --write \"**/*.{js,json,md,ts}\"",
"prettier:check": "prettier --check --config ./.prettierrc \"**/*.{js,json,md,ts}\"",
"start": "ts-node src",
"test": "hardhat test --tsconfig tsconfig.dev.json"
},
"dependencies": {
"@hifi/flash-swap": "^1.13.0",
"@hifi/protocol": "^1.12.0",
"@uniswap/smart-order-router": "^3.20.2",
"@uniswap/v3-periphery": "^1.4.4",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"stormdb": "^0.6.0",
"utils": "^0.3.1",
"winston": "^3.11.0"
}
}