forked from ojoanalogo/nestjs-redoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "@qiwi/nestjs-redoc",
"version": "0.0.0",
"description": "NestJS ReDoc frontend",
"repository": "[email protected]:qiwi/nestjs-redoc.git",
"author": "Alfonso Reyes",
"main": "dist/index.js",
"private": false,
"license": "MIT",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.json",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"release": "semantic-release"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@nestjs/common": "^7.4.2",
"@nestjs/swagger": "^4.5.12",
"express-handlebars": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@nestjs/core": "^7.4.2",
"@nestjs/platform-express": "^7.4.2",
"@nestjs/platform-fastify": "^7.4.2",
"@nestjs/testing": "^7.4.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@types/express": "^4.17.7",
"@types/express-handlebars": "^3.1.0",
"@types/hapi__joi": "^17.1.4",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/supertest": "^2.0.10",
"husky": "^4.2.5",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.2",
"supertest": "^4.0.2",
"ts-jest": "^26.2.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
}
}