-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.39 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@hckrnews/openapi-express",
"version": "1.0.6",
"description": "OpenAPI express",
"files": [
"src/openapi-express.js",
"src/api-schema.js",
"src/entities/api.js"
],
"main": "src/openapi-express.js",
"repository": {
"type": "git",
"url": "https://github.com/hckrnews/openapi-express.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"javascript",
"express",
"openapi"
],
"author": {
"name": "Pieter Wigboldus",
"url": "https://hckr.news/"
},
"bugs": {
"url": "https://github.com/hckrnews/openapi-express/issues"
},
"homepage": "https://github.com/hckrnews/openapi-express#readme",
"scripts": {
"lint": "eslint 'src/**/*.js'",
"lint:report": "eslint 'src/**/*.js' -f json -o report.json --no-fix",
"lint:fix": "eslint 'src/**/*.js' --fix",
"test": "jest",
"test:watch": "jest src --watch",
"cpd": "node_modules/jscpd/bin/jscpd src",
"vulnerabilities": "npm audit --omit=dev"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"@jest/globals": "^29.4.2",
"babel-jest": "^29.4.2",
"eslint": "^8.44.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-sonarjs": "^0.25.0",
"esm": "^3.2.25",
"jest": "^29.4.2",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"jscpd": "^4.0.0",
"prettier": "^3.0.0",
"supertest": "^7.0.0"
},
"type": "module",
"engines": {
"node": ">= 18.13"
},
"dependencies": {
"@trojs/error": "^4.0.0",
"@hckrnews/express-callback": "^4.1.2",
"@trojs/logger": "^1.0.0",
"@hckrnews/openapi-routes": "^1.3.0",
"@trojs/validator": "^11.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.0",
"helmet": "^8.0.0",
"morgan": "^1.10.0",
"openapi-backend": "^5.6.2",
"swagger-ui-express": "^5.0.0"
},
"overrides": {
"optionator": "0.9.4",
"send@<=0.19.0": "^0.19.0",
"cookie@<=0.7.0": "0.7.0"
},
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/w3nl"
}
}