forked from nestjs/swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "@nestjs/swagger",
"version": "3.1.0",
"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",
"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"
},
"dependencies": {
"lodash": "4.17.15",
"path-to-regexp": "3.0.0"
},
"devDependencies": {
"@nestjs/common": "6.5.3",
"@nestjs/core": "6.5.3",
"@types/jest": "24.0.17",
"@types/node": "11.13.19",
"husky": "3.0.3",
"jest": "24.8.0",
"lint-staged": "9.2.1",
"prettier": "1.18.2",
"reflect-metadata": "0.1.13",
"ts-jest": "24.0.2",
"typescript": "3.5.3"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"reflect-metadata": "^0.1.12"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add -f"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}