-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.84 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
{
"name": "@goodrequest/express-joi-to-swagger",
"version": "2.0.2",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/GoodRequest/express-joi-to-swagger.git"
},
"author": "Goodrequest",
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"prepublishOnly": "rm -rf dist && tsc --project tsconfig.build.json && copyfiles -f ./src/ui/index.html ./dist/ui",
"demo": "rm -rf demo/dist && node -r ts-node/register demo/index.ts",
"lint": "eslint src --color --ext .js --ext .ts",
"type-check": "tsc --project tsconfig.json --noEmit"
},
"files": [
"dist"
],
"dependencies": {
"buffer": "6.0.3",
"compare-versions": "6.1.1",
"create-file-webpack": "1.0.2",
"css-loader": "7.1.2",
"express": "4.21.1",
"html-webpack-plugin": "5.6.3",
"joi": "^17.13.3",
"joi-to-swagger": "github:GoodRequest/joi-to-swagger#cea5393",
"lodash": "4.17.21",
"passport": "0.7.0",
"stream-browserify": "3.0.0",
"style-loader": "4.0.0",
"swagger-ui-dist": "5.17.14",
"ts-node": "10.9.2",
"webpack": "5.95.0"
},
"devDependencies": {
"@goodrequest/eslint-config-typescript": "1.3.0",
"@types/express": "4.17.21",
"@types/lodash": "4.17.13",
"@types/passport": "1.0.17",
"@types/swagger-ui-dist": "3.30.5",
"@typescript-eslint/eslint-plugin": "7.16.0",
"copyfiles": "2.4.1",
"eslint": "8.55.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.1.6",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"description": "Solution that generates beautiful Swagger API documentation from code. 💻",
"bugs": {
"url": "https://github.com/GoodRequest/express-joi-to-swagger/issues"
},
"homepage": "https://github.com/GoodRequest/express-joi-to-swagger#readme",
"directories": {
"test": "tests"
},
"keywords": [
"express",
"joi",
"swagger"
]
}