Files
caddy-proxy-manager/package.json
dependabot[bot] 88af306a4b deps(deps): bump the production-dependencies group with 4 updates (#66)
Bumps the production-dependencies group with 4 updates: [apexcharts](https://github.com/apexcharts/apexcharts.js), [better-sqlite3](https://github.com/WiseLibs/better-sqlite3), [dayjs](https://github.com/iamkun/dayjs) and [maplibre-gl](https://github.com/maplibre/maplibre-gl-js).


Updates `apexcharts` from 5.10.3 to 5.10.4
- [Release notes](https://github.com/apexcharts/apexcharts.js/releases)
- [Commits](https://github.com/apexcharts/apexcharts.js/compare/v5.10.3...v5.10.4)

Updates `better-sqlite3` from 12.6.2 to 12.8.0
- [Release notes](https://github.com/WiseLibs/better-sqlite3/releases)
- [Commits](https://github.com/WiseLibs/better-sqlite3/compare/v12.6.2...v12.8.0)

Updates `dayjs` from 1.11.19 to 1.11.20
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/iamkun/dayjs/compare/v1.11.19...v1.11.20)

Updates `maplibre-gl` from 5.19.0 to 5.20.1
- [Release notes](https://github.com/maplibre/maplibre-gl-js/releases)
- [Changelog](https://github.com/maplibre/maplibre-gl-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/maplibre/maplibre-gl-js/compare/v5.19.0...v5.20.1)

---
updated-dependencies:
- dependency-name: apexcharts
  dependency-version: 5.10.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: better-sqlite3
  dependency-version: 12.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: dayjs
  dependency-version: 1.11.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: maplibre-gl
  dependency-version: 5.20.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-17 23:07:56 +01:00

66 lines
2.1 KiB
JSON

{
"name": "caddy-proxy-manager",
"version": "1.0.0",
"description": "Caddy Proxy Manager - web UI for managing Caddy reverse proxies with OAuth2 authentication.",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test:all": "./scripts/test-all.sh",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"test": "vitest run --config tests/vitest.config.ts",
"test:watch": "vitest --config tests/vitest.config.ts",
"test:ui": "vitest --ui --config tests/vitest.config.ts",
"test:e2e": "playwright test --config tests/playwright.config.ts",
"test:e2e:ui": "playwright test --ui --config tests/playwright.config.ts",
"test:e2e:headed": "playwright test --headed --config tests/playwright.config.ts"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@mui/x-date-pickers": "^8.27.2",
"@types/better-sqlite3": "^7.6.13",
"apexcharts": "^5.10.4",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.8.0",
"d3-geo": "^3.1.1",
"dayjs": "^1.11.20",
"drizzle-orm": "^0.45.1",
"maplibre-gl": "^5.20.1",
"maxmind": "^5.0.5",
"next": "^16.1.7",
"next-auth": "^5.0.0-beta.30",
"node-forge": "^1.3.3",
"react": "^19.2.4",
"react-apexcharts": "^2.1.0",
"react-dom": "^19.2.4",
"react-map-gl": "^8.1.0",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "^16.1.6",
"@playwright/test": "^1.58.2",
"@types/d3-geo": "^3.1.0",
"@types/node": "^25.3.5",
"@types/node-forge": "^1.3.14",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/topojson-client": "^3.1.5",
"@vitest/ui": "^4.0.18",
"drizzle-kit": "^0.31.9",
"eslint": "^10.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18",
"world-atlas": "^2.0.2"
}
}