-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
122 lines (122 loc) · 4.16 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
{
"name": "polygon-validators-monitoring",
"version": "0.4.0",
"description": "Polygon validators monitoring",
"author": "Lido automation team",
"private": true,
"license": "MIT",
"scripts": {
"typechain": "typechain --target=ethers-v5 --out-dir src/contracts/generated \"**/abis/*.json\"",
"prebuild": "rimraf src/contracts/generated && yarn typechain && rimraf dist",
"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 dist/src/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"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": "jest --config ./test/jest-e2e.json --detectOpenHandles --forceExit",
"typeorm": "typeorm-ts-node-commonjs",
"migration:gen": "yarn typeorm migration:generate -d src/storage/cli.config.ts",
"migration:run": "yarn typeorm migration:run -d src/storage/cli.config.ts",
"migration:rev": "yarn typeorm migration:revert -d src/storage/cli.config.ts",
"schema:drop": "yarn typeorm schema:drop -d src/storage/cli.config.ts",
"schema:sync": "yarn typeorm schema:sync -d src/storage/cli.config.ts",
"schema:fresh": "yarn schema:drop && yarn schema:sync",
"console:dev": "ts-node -r tsconfig-paths/register src/console.ts",
"console": "node dist/src/console.js"
},
"dependencies": {
"@ethersproject/bignumber": "^5.6.2",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/logger": "^5.7.0",
"@ethersproject/providers": "^5.6.8",
"@lido-nestjs/constants": "^1.1.0",
"@lido-nestjs/contracts": "^2.2.0",
"@lido-nestjs/decorators": "^1.0.0",
"@lido-nestjs/execution": "^1.9.0",
"@lido-nestjs/logger": "^1.0.1",
"@lido-nestjs/utils": "^1.2.0",
"@nestjs/common": "^9.3.9",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.3.9",
"@nestjs/event-emitter": "^1.1.1",
"@nestjs/platform-fastify": "^9.3.9",
"@nestjs/schedule": "^2.2.0",
"@nestjs/terminus": "^9.2.1",
"@nestjs/throttler": "^4.0.0",
"@nestjs/typeorm": "^9.0.1",
"@sentry/node": "^6.16.1",
"@typechain/ethers-v5": "^10.1.0",
"@willsoto/nestjs-prometheus": "^4.4.0",
"cache-manager": "^3.6.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"ethers": "^5.6.9",
"fastify-swagger": "^4.13.1",
"nestjs-console": "^8.0.0",
"pg": "^8.7.3",
"prom-client": "^14.0.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.2",
"typechain": "^8.1.0",
"typeorm": "^0.3.7"
},
"devDependencies": {
"@golevelup/ts-jest": "^0.3.3",
"@nestjs/cli": "^9.2.0",
"@nestjs/schematics": "^9.0.4",
"@nestjs/testing": "^9.3.9",
"@types/cache-manager": "^3.4.2",
"@types/cron": "^2.0.0",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.9",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.18.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": "^29.0.3",
"prettier": "^2.5.1",
"supertest": "^6.2.1",
"ts-jest": "^29.0.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.6.2"
},
"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"
}
}