forked from ojoanalogo/nestjs-redoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.01 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
{
"name": "@print-one/nestjs-redoc",
"version": "2.2.2",
"description": "NestJS ReDoc frontend",
"repository": "https://github.com/Print-one/nestjs-redoc/",
"author": "Alfonso Reyes, PaulRill00",
"main": "dist/index.js",
"private": false,
"license": "MIT",
"engines": {
"node": "<21"
},
"scripts": {
"setup": "npm run build",
"prebuild": "rimraf ./dist",
"build": "tsc -p ./tsconfig.build.json",
"format": "prettier --write \"./src/**/*.ts\"",
"format:check": "prettier --check \"./src/**/*.ts\"",
"eslint": "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.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/swagger": "^6.0.0",
"reflect-metadata": "^0.1.12"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@nestjs/common": "^9.0.0",
"@nestjs/swagger": "^7.2.0",
"express-basic-auth": "^1.2.0",
"express-handlebars": "^5.1.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.0.0",
"@nestjs/core": "^9.3.12",
"@nestjs/platform-express": "^9.3.12",
"@nestjs/platform-fastify": "^9.0.0",
"@nestjs/testing": "^9.4.1",
"@types/express": "^4.17.21",
"@types/express-handlebars": "^3.1.0",
"@types/hapi__joi": "^17.1.6",
"@types/node": "^20.11.5",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"reflect-metadata": "^0.2.1",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"supertest": "^6.2.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}