mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-10 02:25:56 +00:00
75 lines
2.6 KiB
JSON
75 lines
2.6 KiB
JSON
{
|
|
"name": "pulse",
|
|
"version": "1.5.4",
|
|
"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",
|
|
"dev:kill:backend": "npx kill-port 7654 7655",
|
|
"dev:kill:frontend": "npx kill-port 9513 3000",
|
|
"dev:kill:all": "npm run dev:kill:backend && npm run dev:kill:frontend",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"dev": "node scripts/start-dev.js",
|
|
"dev:unix": "./start-dev.sh",
|
|
"dev:windows": "start-dev.bat",
|
|
"dev:mock": "node scripts/start-mock-dev.js",
|
|
"dev:mock:unix": "./start-mock-dev.sh",
|
|
"dev:mock:windows": "start-mock-dev.bat",
|
|
"dev:docker:cleanup": "node scripts/dev-cleanup.js",
|
|
"dev:docker": "npm run dev:docker:cleanup && docker compose -f docker-compose.dev.yml up --build",
|
|
"prod:kill": "npx kill-port 7654",
|
|
"prod:docker:cleanup": "docker compose down && docker container prune -f",
|
|
"prod": "npm run prod:kill && npm run build && cd frontend && npm run build && cd .. && NODE_ENV=production node dist/server.js",
|
|
"prod:docker": "npm run prod:docker:cleanup && docker compose up --build",
|
|
"screenshots": "./scripts/update-screenshots.sh",
|
|
"generate:logos": "npm install canvas && node scripts/generate-logo-pngs.js && node scripts/generate-logo-with-text.js"
|
|
},
|
|
"keywords": [
|
|
"proxmox",
|
|
"monitoring",
|
|
"dashboard",
|
|
"real-time",
|
|
"metrics",
|
|
"virtualization"
|
|
],
|
|
"author": "Richard Courtman",
|
|
"license": "MIT",
|
|
"description": "A lightweight, responsive monitoring application for Proxmox VE 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": "^5.0.0",
|
|
"@types/node": "^22.13.5",
|
|
"@types/socket.io": "^3.0.2",
|
|
"@types/uuid": "^10.0.0",
|
|
"axios": "^1.8.2",
|
|
"canvas": "^3.1.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.7",
|
|
"express": "^4.21.2",
|
|
"node-fetch": "^3.3.2",
|
|
"puppeteer": "^24.3.1",
|
|
"socket.io": "^4.8.1",
|
|
"socket.io-client": "^4.8.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.7.3",
|
|
"uuid": "^11.1.0",
|
|
"winston": "^3.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"concurrently": "^9.1.2",
|
|
"nodemon": "^3.1.9",
|
|
"ts-node-dev": "^2.0.0"
|
|
}
|
|
}
|