-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.69 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "ssv-liquidator",
"version": "0.0.9",
"description": "CLI to work with SSV Network liquidation flow, liquidate and earn SSV tokens in SSV Network.",
"author": "SSV.Network",
"repository": "https://github.com/bloxapp/ssv-liquidator",
"license": "MIT",
"keywords": [
"ssv",
"ssv.network",
"liquidation"
],
"engines": {
"node": ">=18"
},
"scripts": {
"cli:dev": "nodemon --exec yarn cli",
"cli": "sh cli.sh",
"demo": "node tests/generate-demo-data.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"@nestjs/axios": "^2.0.0",
"@nestjs/common": "^9.4.0",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.4.0",
"@nestjs/microservices": "^9.4.0",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/schedule": "^2.2.1",
"@types/moment-timezone": "^0.5.30",
"argparse": "^2.0.1",
"axios": "^1.3.5",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cli-progress": "^3.12.0",
"dotenv": "^8.2.0",
"ethereum-input-data-decoder": "^0.4.1",
"import-jsx": "^4.0.0",
"ink": "^3.2.0",
"ink-tab": "^4.1.0",
"javascript-time-ago": "^2.3.10",
"lodash": "^4.17.20",
"prom-client": "^14.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"reflect-metadata": "^0.1.13",
"request-context": "^2.0.0",
"rxjs": "^7.8.0",
"source-map-support": "^0.5.19",
"sqlite3": "^5.0.8",
"typeorm": "^0.3.12",
"typescript": "^3.9.3",
"typescript-retry-decorator": "^2.4.2",
"web3": "^1.5.1"
},
"devDependencies": {
"@nestjs/typeorm": "^9.0.1",
"@types/argparse": "^2.0.10",
"@types/cron": "^1.7.2",
"@types/dotenv": "^8.2.0",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.2",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/eslint-plugin-tslint": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-import-helpers": "^1.0.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^3.0.9",
"lint-staged": "~9.4.2",
"nodemon": "^2.0.22",
"prettier": "^2.0.5",
"ts-loader": "^7.0.4",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.3.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}