-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
112 lines (112 loc) · 3.79 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
{
"name": "nestjs-tools",
"description": "Tools for NestJS applications",
"version": "0.1.0",
"license": "Apache-2.0",
"homepage": "https://github.com/getlarge/nestjs-tools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/getlarge/nestjs-tools.git"
},
"bugs": {
"url": "https://github.com/getlarge/nestjs-tools/issues"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"scripts": {
"format": "nx format",
"format:all": "prettier --write \"packages/**/*.{ts,json}\"",
"cleanup": "nx run-many --target=cleanup --all",
"build": "nx run-many --target=build --all",
"build:affected": "nx affected --target=build",
"lint": "nx run-many --target=lint --all",
"lint:fix": "nx run-many --target=lint:fix --all",
"lint:affected": "nx affected --target=lint",
"lint:staged": "npx lint-staged",
"lint:commit": "npx --no -- commitlint --edit $1",
"test": "nx run-many --target=test --all",
"test:affected": "nx affected --target=test",
"test:cov": "nx run-many --target=test:cov --all && node merge-coverage.js",
"test:cov:affected": "nx affected --target=test:cov && node merge-coverage.js",
"test:debug": "jest --logHeapUsage --detectOpenHandles--detectLeaks",
"test:log": "node --expose-gc -r tsconfig-paths/register -r ts-node/register ./node_modules/.bin/jest -w=1 --logHeapUsage --detectOpenHandles",
"test:inspect": "node --inspect-brk --expose-gc -r tsconfig-paths/register -r ts-node/register ./node_modules/.bin/jest --runInBand --logHeapUsage",
"test:coverage": "jest --ci --coverage --logHeapUsage --forceExit && node coverage-transform.js",
"scan:deps": "audit-ci --config audit-ci.json",
"scan:code": "sonarqube-verify",
"prepare": "husky"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@nx/eslint": "19.7.3",
"@nx/eslint-plugin": "19.7.3",
"@nx/jest": "19.7.3",
"@nx/js": "19.7.3",
"@nx/nest": "19.7.3",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@swc/helpers": "0.5.13",
"@types/amqplib": "^0.10.5",
"@types/express": "^4.17.21",
"@types/jest": "29.5.13",
"@types/node": "^18.16.9",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"audit-ci": "^6.3.0",
"dotenv": "^16.4.5",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-max-params-no-constructor": "^0.0.4",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"ioredis-mock": "^8.9.0",
"jest": "29.7.0",
"jest-environment-node": "^29.7.0",
"lint-staged": "^15.0.3",
"mqtt": "^5.5.2",
"nx": "19.7.3",
"prettier": "^3.3.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "5.5.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.651.0",
"@aws-sdk/lib-storage": "^3.651.0",
"@fastify/multipart": "^8.3.0",
"@google-cloud/storage": "^7.12.1",
"@nestjs/common": "^10.4.1",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.4.1",
"@nestjs/microservices": "^10.4.1",
"@nestjs/platform-fastify": "^10.4.1",
"@typescript-eslint/utils": "^8.5.0",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.4",
"ioredis": "^5.3.2",
"redlock": "^5.0.0-beta.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.0",
"tslib": "^2.3.0",
"uuid": "^9.0.1"
},
"workspaces": [
"packages/**"
],
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}