-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
127 lines (127 loc) · 3.66 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
126
127
{
"name": "docker-ts-nest",
"version": "0.6.0",
"license": "MIT",
"engines": {
"node": "^16.16.0 || >=18.0.0",
"yarn": ">=1.22.19"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build -b swc",
"dev": "nest start -b swc",
"format": "prettier --cache --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && yarn build",
"start:prod": "cross-env-shell NODE_ENV=prod pm2 start ecosystem.config.js",
"lint": "eslint '{src,test}/**/*.ts' --fix",
"test": "vitest run",
"test:watch": "vitest run --watch",
"test:cov": "vitest run --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",
"check:all": "yarn lint && yarn format && yarn test:cov",
"doc": "npx compodoc --theme material -p ./tsconfig.json",
"doc:serve": "npx compodoc -s",
"commitmsg": "commitlint -e",
"release": "standard-version --no-verify"
},
"dependencies": {
"@nest-middlewares/cors": "^7.0.1",
"@nest-middlewares/helmet": "^7.0.1",
"@nest-middlewares/response-time": "^7.0.1",
"@nestjs/axios": "~3.0.0",
"@nestjs/bull": "~10.0.0",
"@nestjs/common": "~10.0.2",
"@nestjs/core": "~10.0.2",
"@nestjs/microservices": "~10.0.2",
"@nestjs/platform-express": "~10.0.2",
"@nestjs/swagger": "~7.0.2",
"@nestjs/testing": "~10.0.2",
"@nestjs/websockets": "~10.0.2",
"axios": "1.4.0",
"bull": "^4.10.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "7.0.0",
"nest-winston": "^1.9.2",
"reflect-metadata": "^0.1.13",
"remeda": "^1.19.0",
"response-time": "^2.3.2",
"rxjs": "~7.8.1",
"supertest": "^6.3.3",
"swagger-ui-express": "^4.6.3",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-angular": "^17.6.5",
"@compodoc/compodoc": "^1.1.21",
"@nestjs/cli": "~10.0.3",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.66",
"@types/bull": "^4.10.0",
"@types/node": "^18.16.18",
"@typescript-eslint/eslint-plugin": "~5.60.0",
"@typescript-eslint/parser": "~5.60.0",
"@vitest/coverage-v8": "^0.32.2",
"c8": "^8.0.0",
"cross-env": "^7.0.3",
"eslint": "~8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-radar": "^0.2.1",
"husky": "^8.0.3",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "~2.8.8",
"prettier-plugin-import-sort": "^0.0.7",
"redis-mock": "^0.56.3",
"rimraf": "^5.0.1",
"standard-version": "^9.5.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.1.3",
"vite-plugin-checker": "^0.6.1",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.2"
},
"importSort": {
".ts": {
"style": "module",
"parser": "typescript"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"setupFilesAfterEnv": "./jest.setup.redis-mock.js",
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}