forked from nestjs/swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.67 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
{
"name": "@nestjs/swagger",
"version": "7.1.12",
"description": "Nest - modern, fast, powerful node.js web framework (@swagger)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"repository": "https://github.com/nestjs/swagger",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier \"lib/**/*.ts\" --write",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test": "jest",
"test:dev": "jest --watch",
"test:e2e": "jest --config e2e/jest-e2e.json",
"prerelease": "npm run build",
"release": "release-it",
"---manual-tests---": "",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --watch --debug"
},
"dependencies": {
"@nestjs/mapped-types": "2.0.2",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"path-to-regexp": "3.2.0",
"swagger-ui-dist": "5.7.2"
},
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-angular": "17.7.0",
"@fastify/static": "6.11.2",
"@nestjs/common": "10.2.6",
"@nestjs/core": "10.2.6",
"@nestjs/platform-express": "10.2.6",
"@nestjs/platform-fastify": "10.2.6",
"@types/jest": "29.5.5",
"@types/js-yaml": "4.0.6",
"@types/lodash": "4.14.199",
"@types/node": "18.18.3",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"express": "4.18.2",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"openapi-types": "12.1.3",
"prettier": "2.8.8",
"reflect-metadata": "0.1.13",
"release-it": "16.2.1",
"supertest": "6.3.3",
"swagger-parser": "10.0.3",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
},
"peerDependencies": {
"@fastify/static": "^6.0.0",
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"class-transformer": "*",
"class-validator": "*",
"reflect-metadata": "^0.1.12"
},
"peerDependenciesMeta": {
"@fastify/static": {
"optional": true
},
"class-transformer": {
"optional": true
},
"class-validator": {
"optional": true
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add -f"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
}
}