Aktueller Stand
This commit is contained in:
91
backend/node_modules/@fastify/swagger-ui/package.json
generated
vendored
91
backend/node_modules/@fastify/swagger-ui/package.json
generated
vendored
@@ -1,25 +1,22 @@
|
||||
{
|
||||
"name": "@fastify/swagger-ui",
|
||||
"version": "4.2.0",
|
||||
"version": "5.2.4",
|
||||
"description": "Serve Swagger-ui for Fastify",
|
||||
"main": "index.js",
|
||||
"type": "commonjs",
|
||||
"types": "types/index.d.ts",
|
||||
"scripts": {
|
||||
"coverage": "npm run unit -- --coverage-report=lcovonly",
|
||||
"lint": "standard",
|
||||
"lint:fix": "npm run lint -- --fix",
|
||||
"lint": "eslint",
|
||||
"lint:fix": "eslint --fix",
|
||||
"prepare": "node scripts/prepare-swagger-ui",
|
||||
"prepublishOnly": "npm run prepare",
|
||||
"test": "npm run prepare && npm run coverage && npm run typescript",
|
||||
"test": "npm run prepare && npm run unit && npm run typescript",
|
||||
"test:dev": "npm run lint && npm run unit && npm run typescript",
|
||||
"test:e2e:command": "node ./examples/example-e2e.js",
|
||||
"test:e2e": "npx playwright test",
|
||||
"test:e2e:ui": "npx playwright test --ui",
|
||||
"typescript": "tsd",
|
||||
"unit": "tap",
|
||||
"unit:report": "npm run unit -- --coverage-report=html",
|
||||
"unit:verbose": "npm run unit -- -Rspec"
|
||||
"unit": "c8 --100 node --test"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -33,11 +30,25 @@
|
||||
"serve",
|
||||
"static"
|
||||
],
|
||||
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
|
||||
"author": "Aras Abbasi <aras.abbasi@gmail.com>",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Matteo Collina",
|
||||
"email": "hello@matteocollina.com"
|
||||
},
|
||||
{
|
||||
"name": "Manuel Spigolon",
|
||||
"email": "behemoth89@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "KaKa Ng",
|
||||
"email": "kaka@kakang.dev",
|
||||
"url": "https://github.com/climba03003"
|
||||
},
|
||||
{
|
||||
"name": "Frazer Smith",
|
||||
"email": "frazer.dev@icloud.com",
|
||||
"url": "https://github.com/fdawgs"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
@@ -45,35 +56,39 @@
|
||||
"url": "https://github.com/fastify/fastify-swagger-ui/issues"
|
||||
},
|
||||
"homepage": "https://github.com/fastify/fastify-swagger-ui#readme",
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/fastify"
|
||||
},
|
||||
{
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/fastify"
|
||||
}
|
||||
],
|
||||
"devDependencies": {
|
||||
"@apidevtools/swagger-parser": "^10.1.0",
|
||||
"@fastify/basic-auth": "^5.0.0",
|
||||
"@fastify/helmet": "^11.0.0",
|
||||
"@fastify/pre-commit": "^2.0.2",
|
||||
"@fastify/swagger": "^8.0.0",
|
||||
"@playwright/test": "^1.39.0",
|
||||
"@tapjs/snapshot": "^2.0.1",
|
||||
"@types/node": "^20.1.1",
|
||||
"ajv": "^8.11.0",
|
||||
"fastify": "^4.0.0",
|
||||
"fs-extra": "^11.0.0",
|
||||
"qs": "^6.11.0",
|
||||
"standard": "^17.0.0",
|
||||
"swagger-ui-dist": "5.17.14",
|
||||
"tap": "^18.6.1",
|
||||
"tsd": "^0.31.0"
|
||||
"@apidevtools/swagger-parser": "^12.0.0",
|
||||
"@fastify/basic-auth": "^6.0.0",
|
||||
"@fastify/helmet": "^13.0.0",
|
||||
"@fastify/swagger": "^9.0.0",
|
||||
"@playwright/test": "^1.43.1",
|
||||
"@types/node": "^25.0.3",
|
||||
"ajv": "^8.12.0",
|
||||
"c8": "^10.1.2",
|
||||
"eslint": "^9.17.0",
|
||||
"fastify": "^5.0.0",
|
||||
"fs-extra": "^11.2.0",
|
||||
"neostandard": "^0.12.0",
|
||||
"qs": "^6.12.1",
|
||||
"swagger-ui-dist": "5.31.0",
|
||||
"tsd": "^0.33.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fastify/static": "^7.0.0",
|
||||
"fastify-plugin": "^4.0.0",
|
||||
"openapi-types": "^12.0.2",
|
||||
"rfdc": "^1.3.0",
|
||||
"yaml": "^2.2.2"
|
||||
},
|
||||
"standard": {
|
||||
"ignore": [
|
||||
"dist"
|
||||
]
|
||||
"@fastify/static": "^9.0.0",
|
||||
"fastify-plugin": "^5.0.0",
|
||||
"openapi-types": "^12.1.3",
|
||||
"rfdc": "^1.3.1",
|
||||
"yaml": "^2.4.1"
|
||||
},
|
||||
"tsd": {
|
||||
"directory": "types"
|
||||
@@ -85,9 +100,5 @@
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"pre-commit": [
|
||||
"lint",
|
||||
"test"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user