-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.68 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
{
"name": "nest-seed",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"build": "tsc -p tsconfig.build.json",
"gulp:build": "gulp default",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nest start --watch",
"start:prod": "node dist/main.js --max-old-space-size=6000",
"test": "jest",
"test:dev": "cross-env NODE_ENV=development jest",
"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",
"update": "ncu --packageFile package.json -x @types/node"
},
"dependencies": {
"@donews/nestjs-config": "0.10.2",
"@donews/nestjs-logger": "0.10.2",
"@donews/nestjs-prom": "0.10.2",
"@nestjs/common": "10.4.15",
"@nestjs/core": "10.4.15",
"@nestjs/platform-express": "10.4.15",
"@nestjs/swagger": "8.1.0",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"express": "4.21.2",
"iterare": "1.2.1",
"joi": "17.11.0",
"prom-client": "14.2.0",
"reflect-metadata": "0.2.2",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"swagger-ui-express": "5.0.1"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-angular": "19.7.0",
"@donews/eslint-config-donews": "1.0.3",
"@jest/types": "29.6.3",
"@nestjs/testing": "10.4.15",
"@types/express": "5.0.0",
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"gulp": "5.0.0",
"gulp-typescript": "5.0.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"roots": [
"<rootDir>/test",
"<rootDir>/src"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}