forked from nestjs/swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "@nestjs/swagger",
"version": "3.0.1",
"description": "Nest - modern, fast, powerful node.js web framework (@swagger)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"format": "prettier lib/**/*.ts --write",
"precommit": "lint-staged",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public"
},
"dependencies": {
"lodash": "4.17.11",
"path-to-regexp": "3.0.0",
"swagger-ui-express": "4.0.2"
},
"devDependencies": {
"@nestjs/common": "6.0.1",
"@nestjs/core": "6.0.1",
"@types/node": "11.11.3",
"fastify-swagger": "2.3.2",
"husky": "0.14.3",
"lint-staged": "8.1.5",
"prettier": "1.16.4",
"reflect-metadata": "0.1.13",
"typescript": "3.3.3333"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add -f"
]
}
}