-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.15 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
{
"name": "nestjs-swagger-dto",
"version": "0.0.0",
"description": "Nestjs swagger dto decorators",
"keywords": [
"nestjs",
"typescript",
"swagger",
"dto"
],
"main": "lib/nestjs-swagger-dto.js",
"types": "lib/nestjs-swagger-dto.d.ts",
"files": [
"lib"
],
"author": "glebbash <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/glebbash/nestjs-swagger-dto"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "eslint --fix 'src/**/*.ts'",
"prebuild": "rimraf lib",
"build": "tsc --project tsconfig.build.json",
"build:docs": "typedoc --out docs src/nestjs-swagger-dto.ts",
"test": "jest --coverage",
"test:ci": "npm run lint && npm run test -- --no-cache"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"@nestjs/swagger": ">= 5",
"class-transformer": ">= 0.5",
"class-validator": ">= 0.13"
},
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@nestjs/common": "^10.3.1",
"@nestjs/core": "^10.3.1",
"@nestjs/platform-express": "^10.3.1",
"@nestjs/swagger": "^7.2.0",
"@nestjs/testing": "^10.3.1",
"@types/jest": "29.5.12",
"@types/node": "^20.11.16",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^9.0.10",
"jest": "29.7.0",
"jest-config": "29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"reflect-metadata": "^0.1.14",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"semantic-release": "^23.0.0",
"supertest": "^6.3.4",
"true-myth": "^7.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
}
}