mirror of
https://github.com/selfhosters-cc/container-census.git
synced 2026-01-23 15:08:31 -06:00
- Dashboard: stat cards, containers by state, hosts list, recent containers - Containers: container cards with actions (start/stop/restart/remove) - Hosts: host management with add/edit/delete, stats collection toggle - Security: vulnerability scans table with filters, details modal - Monitoring: running containers grid with CPU/memory stats - Notifications: activity log, channels, rules, silences management - Settings: scanner interval, telemetry, UI settings - Integrations: plugin list and NPM plugin page Uses Next.js 16 with App Router, TypeScript, and Tailwind CSS. Static export configured for serving from Go server. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
530 B
JSON
27 lines
530 B
JSON
{
|
|
"name": "web-next",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"next": "16.0.6",
|
|
"react": "19.2.0",
|
|
"react-dom": "19.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.0.6",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|