Full-stack real-time server monitoring dashboard with: - Express.js backend with SSH-based metrics collection - React + TypeScript + Tailwind CSS + shadcn/ui frontend - CPU, memory, disk, Docker container, and Nginx monitoring - Pure SVG charts (CPU area chart + memory donut) - Gilroy font, 10s auto-refresh polling - Multi-page dashboard with sidebar navigation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
462 B
JSON
24 lines
462 B
JSON
{
|
|
"name": "server",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"start": "tsx src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.21.0",
|
|
"ssh2": "^1.16.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.0",
|
|
"@types/ssh2": "^1.15.0",
|
|
"@types/cors": "^2.8.17",
|
|
"typescript": "^5.8.0",
|
|
"tsx": "^4.19.0"
|
|
}
|
|
}
|