forked from nestjs/swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.05 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
{
"name": "@nestjs/swagger",
"version": "4.3.2",
"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 --config jest.json",
"test:dev": "jest --config jest.json --watch",
"test:e2e": "jest --config e2e/jest-e2e.json",
"prerelease": "npm run build",
"release": "release-it"
},
"dependencies": {
"lodash": "4.17.15",
"path-to-regexp": "3.2.0"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-angular": "8.3.4",
"@nestjs/common": "6.11.11",
"@nestjs/core": "6.11.11",
"@nestjs/platform-express": "6.11.11",
"@nestjs/platform-fastify": "6.11.11",
"@types/jest": "25.1.4",
"@types/lodash": "4.14.149",
"@types/node": "11.15.0",
"@typescript-eslint/eslint-plugin": "2.22.0",
"@typescript-eslint/parser": "2.22.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"express": "4.17.1",
"fastify-swagger": "2.5.0",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.8",
"prettier": "1.19.1",
"reflect-metadata": "0.1.13",
"release-it": "13.0.0",
"swagger-parser": "8.0.4",
"swagger-ui-express": "4.1.3",
"ts-jest": "25.2.1",
"typescript": "3.8.3"
},
"peerDependencies": {
"@nestjs/common": "^6.8.0",
"@nestjs/core": "^6.8.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"
}
}
}