-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "@opyn/liquidator",
"version": "0.1.0",
"description": "An Opyn liquidator bot",
"keywords": [
"defi",
"ethereum",
"liquidator",
"options",
"opyn"
],
"homepage": "https://github.com/opynfinance/Gamma-Liquidator#readme",
"bugs": {
"url": "https://github.com/opynfinance/Gamma-Liquidator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opynfinance/Gamma-Liquidator.git"
},
"license": "MIT",
"main": "build/src/index.js",
"scripts": {
"build": "rm -rf build && tsc",
"build:docker": "DOCKER_BUILDKIT=1 docker build -t opyn/liquidator .",
"build:docker:ci": "docker build -t opyn/liquidator .",
"lint": "eslint . --ext .ts",
"format": "prettier --write . --ignore-path .gitignore",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"dependencies": {
"@pagerduty/pdjs": "^2.2.2",
"@slack/webhook": "^6.0.0",
"dotenv": "^9.0.2",
"ethers": "^5.1.4",
"level": "^7.0.0",
"node-fetch": "^2.6.1",
"winston": "^3.3.3",
"winston-slack-webhook-transport": "^2.0.1",
"winston-transport": "^4.4.0",
"winston-transport-sentry-node": "^1.0.2"
},
"devDependencies": {
"@types/level": "^6.0.0",
"@types/node": "^15.3.0",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
}
}