Files
container-census/web-next/package.json
Self Hosters fe2081d97e Add Next.js frontend with all tabs ported
- 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>
2025-12-02 16:27:42 -05:00

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"
}
}