-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.86 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
{
"name": "nest-openapi",
"version": "0.0.0-SNAPSHOT",
"description": "OpenAPI middleware for NestJS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "rimraf dist/ && 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",
"ts-node": "ts-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qdesrame/nest-openapi.git"
},
"keywords": [
"NestJS",
"OpenAPI"
],
"author": "Quentin Desramé <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/qdesrame/nest-openapi/issues"
},
"homepage": "https://github.com/qdesrame/nest-openapi#readme",
"devDependencies": {
"@nestjs/common": "^5.7.2",
"@nestjs/core": "^5.7.2",
"@types/camelcase": "^4.1.0",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.3",
"@types/js-yaml": "^3.12.0",
"@types/node": "^11.9.3",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.2",
"typescript": "^3.3.3",
"typescript-tslint-plugin": "^0.3.1"
},
"peerDependencies": {
"@nestjs/common": "^5.0.0",
"@nestjs/core": "^5.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add -f"
]
},
"dependencies": {
"camelcase": "^5.0.0",
"class-transformer": "^0.2.0",
"class-validator": "^0.9.1",
"js-yaml": "^3.12.1",
"reflect-metadata": "^0.1.13",
"ts-simple-ast": "^21.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}