forked from nestjs/swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.13 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
{
"name": "@nestjs/swagger",
"version": "4.6.1",
"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.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"
},
"dependencies": {
"@nestjs/mapped-types": "0.1.0",
"lodash": "4.17.20",
"path-to-regexp": "3.2.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"@nestjs/common": "7.4.4",
"@nestjs/core": "7.4.4",
"@nestjs/platform-express": "7.4.4",
"@nestjs/platform-fastify": "7.4.4",
"@types/jest": "26.0.14",
"@types/lodash": "4.14.161",
"@types/node": "11.15.0",
"@typescript-eslint/eslint-plugin": "4.4.0",
"@typescript-eslint/parser": "4.4.0",
"class-transformer": "0.3.1",
"class-validator": "0.12.2",
"eslint": "7.10.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-import": "2.22.1",
"express": "4.17.1",
"fastify-swagger": "3.4.0",
"husky": "4.3.0",
"jest": "26.5.2",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"reflect-metadata": "0.1.13",
"release-it": "14.0.4",
"swagger-parser": "10.0.2",
"swagger-ui-express": "4.1.4",
"ts-jest": "26.4.1",
"typescript": "3.9.7"
},
"peerDependencies": {
"@nestjs/common": "^6.8.0 || ^7.0.0",
"@nestjs/core": "^6.8.0 || ^7.0.0",
"reflect-metadata": "^0.1.12"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add -f"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
}
}