forked from nestjs/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.96 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
{
"name": "nest-typescript-starter",
"private": true,
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"packageManager": "pnpm@9.4.0",
"scripts": {
"build": "rimraf dist && nest build",
"format": "eslint --fix \"src/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint . --ext .js,.json,.jsx,.ts,.tsx",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --inspect --logHeapUsage --threads=false",
"test:e2e": "vitest run --config vitest.config.e2e.mts",
"test:mutate": "stryker run",
"prepare": "husky"
},
"dependencies": {
"@mikro-orm/cli": "^6.2.9",
"@mikro-orm/core": "^6.2.9",
"@mikro-orm/nestjs": "^6.0.2",
"@mikro-orm/postgresql": "^6.2.9",
"@mikro-orm/reflection": "^6.2.9",
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "^10.3.9",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.3.9",
"@nestjs/platform-express": "^10.3.9",
"@nestjs/terminus": "^10.2.3",
"dotenv": "16.4.5",
"express": "^4.19.2",
"joi": "^17.13.3",
"pkg.json": "^2.0.8",
"reflect-metadata": "^0.2.2",
"rimraf": "^5.0.7",
"rxjs": "^7.8.1",
"username": "7.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.5.0",
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.9",
"@stryker-mutator/core": "^8.2.6",
"@stryker-mutator/vitest-runner": "^8.2.6",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.6.3",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^20.14.7",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^4.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"supertest": "7.0.0",
"testcontainers": "^10.9.0",
"ts-loader": "^9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1",
"unplugin-swc": "^1.4.5",
"vitest": "^1.6.0",
"webpack": "^5.92.1"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,jsx,ts,tsx}": [
"eslint --cache --fix",
"vitest related --run "
]
}
}