mirror of
https://github.com/CyberMind-FR/secubox-deb.git
synced 2026-07-29 13:59:40 +00:00
Implements complete Security Operations Center architecture with: Phase 1-4: Base SOC packages - secubox-soc-agent: Edge node metrics collector with HMAC-signed push - secubox-soc-gateway: Central aggregation hub with node registry - secubox-console: TUI dashboard with SOC screens (fleet/alerts/node) - secubox-soc-web: React web dashboard with cyberpunk theme Phase 5: Hierarchical Mode - Mode configuration (edge/regional/central) - Regional SOC enrollment with token-based auth - Regional-to-central aggregation with signed push - Cross-region threat correlation - Global view for central SOC with regional breakdown New packages: secubox-soc-agent, secubox-soc-gateway, secubox-soc-web Updated: secubox-console v1.1.0 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
586 B
JSON
26 lines
586 B
JSON
{
|
|
"name": "secubox-soc-web",
|
|
"version": "1.0.0",
|
|
"description": "SecuBox SOC Web Dashboard",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint src --ext ts,tsx"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.22.0",
|
|
"lucide-react": "^0.344.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.0",
|
|
"@vitejs/plugin-react": "^4.2.0",
|
|
"typescript": "^5.3.0",
|
|
"vite": "^5.1.0"
|
|
}
|
|
}
|