forked from lidofinance/ethereum-validators-monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 4.11 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "ethereum-validators-monitoring",
"version": "4.7.0",
"main": "./dist/main.js",
"private": true,
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "NODE_OPTIONS=--max_old_space_size=8192 node dist/src/main --trace-warnings --sync --sub-fin-head",
"test": "jest --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "NODE_OPTIONS=--experimental-vm-modules jest --config ./test/jest-e2e.json --detectOpenHandles --forceExit",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"author": "Lido",
"license": "MIT",
"description": "Consensus layer validators monitoring bot, that fetches Lido or User Node Operator keys from Execution layer and checks their performance in Consensus layer by: balance delta, attestations, proposes, sync committee participation.",
"dependencies": {
"@chainsafe/persistent-merkle-tree": "^0.7.1",
"@chainsafe/ssz": "^0.9.4",
"@clickhouse/client": "^0.0.11",
"@ethersproject/abstract-signer": "^5.4.0",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.1",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/constants": "^5.4.0",
"@ethersproject/contracts": "^5.4.0",
"@ethersproject/providers": "^5.4.2",
"@ethersproject/units": "^5.4.0",
"@lido-nestjs/execution": "^1.11.1",
"@lido-nestjs/logger": "^1.3.2",
"@lido-nestjs/registry": "^7.4.0",
"@lodestar/types": "^1.15.1",
"@mikro-orm/core": "^5.3.1",
"@mikro-orm/knex": "^5.3.1",
"@mikro-orm/nestjs": "^5.1.0",
"@mikro-orm/sqlite": "^5.3.1",
"@nestjs/common": "^9.0.5",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.5",
"@nestjs/platform-fastify": "^9.0.8",
"@nestjs/terminus": "^8.0.4",
"@types/js-yaml": "^4.0.5",
"@types/validator": "^13.7.1",
"@willsoto/nestjs-prometheus": "^4.7.0",
"app-root-path": "^3.0.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.14.0",
"dotenv": "^10.0.0",
"ethers": "^5.4.2",
"fp-ts": "^2.11.5",
"got-cjs": "^12.5.4",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"pino": "^6.11.3",
"pino-pretty": "^5.1.0",
"prom-client": "^14.2.0",
"reflect-metadata": "^0.1.13",
"retry-ts": "^0.1.3",
"stream-chain": "^2.2.5",
"stream-json": "^1.7.5",
"typechain": "^5.2.0",
"undici": "^6.6.2"
},
"devDependencies": {
"@golevelup/ts-jest": "^0.3.7",
"@nestjs/cli": "^8.2.5",
"@nestjs/schematics": "^8.0.5",
"@nestjs/testing": "^9.0.5",
"@typechain/ethers-v5": "^7.0.1",
"@types/app-root-path": "^1.2.4",
"@types/cache-manager": "^3.4.2",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.9",
"@types/pino": "^6.3.8",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"mocha": "^10.0.0",
"prettier": "^2.5.1",
"supertest": "^6.2.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typechain": "^5.2.0",
"typescript": "^4.5.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"^build-info$": "<rootDir>/../build-info.json"
},
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}