forked from ojoanalogo/nestjs-redoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
{
"name": "@mo4ilsona/nestjs-redoc",
"version": "2.3.1",
"description": "NestJS ReDoc frontend",
"repository": "https://github.com/mxarc/nestjs-redoc",
"author": "Alfonso Reyes",
"main": "dist/index.js",
"private": false,
"license": "MIT",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc -p ./tsconfig.build.json",
"format": "prettier --write \"./src/**/*.ts\"",
"format:check": "prettier --check \"./src/**/*.ts\"",
"lint": "eslint \"./src/**/*.ts\" --fix",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish": "npm run build",
"publish": "npm publish --access public",
"test": "jest",
"test:watch": "jest --watch",
"sample": "ts-node ./sample/main"
},
"peerDependencies": {
"@nestjs/common": "^9.4.3",
"@nestjs/core": "^9.4.3",
"@nestjs/swagger": "^6.3.0",
"reflect-metadata": "^0.1.13"
},
"dependencies": {
"joi": "^17.11.0",
"@nestjs/common": "^9.4.3",
"@nestjs/swagger": "^6.3.0",
"express-basic-auth": "^1.2.1",
"express-handlebars": "^6.0.7"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@nestjs/core": "^9.4.3",
"@nestjs/platform-express": "^9.4.3",
"@nestjs/platform-fastify": "^9.4.3",
"@nestjs/testing": "^9.4.3",
"@types/express": "^4.17.20",
"@types/express-handlebars": "^3.1.0",
"@types/joi": "^17.2.3",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"commitizen": "^4.2.2",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.8.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}