mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-10 02:25:56 +00:00
61 lines
1.8 KiB
JSON
61 lines
1.8 KiB
JSON
{
|
|
"name": "pulse",
|
|
"version": "1.2.1",
|
|
"main": "dist/server.js",
|
|
"scripts": {
|
|
"start": "node dist/server.js",
|
|
"dev:server": "ts-node-dev --respawn --transpile-only src/server.ts",
|
|
"build": "tsc",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"test:startup": "ts-node src/scripts/startup-check.ts",
|
|
"test:api": "ts-node src/scripts/proxmox-api-test.ts",
|
|
"dev:kill:backend": "npx kill-port 7654 7655",
|
|
"dev:kill:frontend": "npx kill-port 9513",
|
|
"dev:kill:all": "npm run dev:kill:backend && npm run dev:kill:frontend",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"dev:start": "./start-dev.sh"
|
|
},
|
|
"keywords": [
|
|
"proxmox",
|
|
"monitoring",
|
|
"dashboard",
|
|
"real-time",
|
|
"metrics",
|
|
"virtualization"
|
|
],
|
|
"author": "Richard Courtman",
|
|
"license": "MIT",
|
|
"description": "A lightweight, responsive ProxMox monitoring application that displays real-time metrics for CPU, memory, network, and disk usage across multiple nodes.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rcourtman/pulse.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/rcourtman/pulse/issues"
|
|
},
|
|
"homepage": "https://github.com/rcourtman/pulse#readme",
|
|
"dependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^22.13.5",
|
|
"@types/socket.io": "^3.0.1",
|
|
"axios": "^1.8.1",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.7",
|
|
"express": "^4.21.2",
|
|
"node-fetch": "^2.7.0",
|
|
"puppeteer": "^24.3.1",
|
|
"socket.io": "^4.8.1",
|
|
"socket.io-client": "^4.8.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.7.3",
|
|
"winston": "^3.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"concurrently": "^9.1.2",
|
|
"nodemon": "^3.1.9",
|
|
"ts-node-dev": "^2.0.0"
|
|
}
|
|
}
|