65 lines
2.1 KiB
JSON
65 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",
|
|
"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.1",
|
|
"bcryptjs": "^3.0.3",
|
|
"better-sqlite3": "^12.6.2",
|
|
"d3-geo": "^3.1.1",
|
|
"dayjs": "^1.11.19",
|
|
"drizzle-orm": "^0.45.1",
|
|
"maplibre-gl": "^5.19.0",
|
|
"maxmind": "^5.0.5",
|
|
"next": "^16.1.6",
|
|
"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.3",
|
|
"@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.2",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.56.1",
|
|
"vite-tsconfig-paths": "^6.1.1",
|
|
"vitest": "^4.0.18",
|
|
"world-atlas": "^2.0.2"
|
|
}
|
|
}
|