Files
pulse/package.json
T
rcourtman a447a3e9e8 docs: comprehensive documentation update and testing infrastructure removal
- Remove complete testing infrastructure (Jest, test files, test scripts)
- Update README with enhanced features documentation:
  - Add technical architecture overview
  - Add advanced configuration options
  - Add security best practices section
  - Enhance update channel system documentation
- Update DEVELOPMENT.md with current project structure
- Update CONTRIBUTING.md to remove test references
- Update .env.example with web-first configuration notice
- Fix outdated references in RELEASE_GUIDE.md and docs/
- Clean up 236 unused npm packages from testing dependencies

This modernizes documentation to reflect current web-based configuration
approach while removing unused testing infrastructure for cleaner codebase.
2025-06-14 14:35:29 +01:00

50 lines
1.7 KiB
JSON

{
"name": "pulse",
"version": "3.28.0-rc2",
"description": "A lightweight monitoring application for Proxmox VE.",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev:server": "NODE_ENV=development node -r dotenv/config server/index.js",
"dev:css": "tailwindcss -c ./src/tailwind.config.js -i ./src/index.css -o ./src/public/output.css --watch",
"build:css": "NODE_ENV=production tailwindcss -c ./src/tailwind.config.js -i ./src/index.css -o ./src/public/output.css",
"dev": "concurrently --kill-others --kill-others-on-fail \"npm:dev:server\" \"npm:dev:css\"",
"screenshot": "node scripts/take-screenshots.js"
},
"keywords": [
"proxmox",
"monitoring",
"dashboard",
"nodejs",
"vuejs"
],
"author": "Richard Courtman",
"license": "MIT",
"dependencies": {
"axios": "^1.9.0",
"axios-retry": "^4.5.0",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"nodemailer": "^7.0.3",
"p-limit": "^6.2.0",
"semver": "^7.7.2",
"socket.io": "^4.7.2",
"tar": "^7.4.3"
},
"_comment_tailwind_v3_reason": "Using Tailwind CSS v3 (3.4.4) due to build inconsistencies observed with v4 (specifically 4.1.4). v4 resulted in incorrectly purged CSS files when built within certain Linux environments (e.g., Proxmox LXC - Debian 12 x86_64), failing to detect dynamically added classes. v3.4.4 builds correctly.",
"devDependencies": {
"@gradin/tailwindcss-scrollbar": "^3.0.1",
"autoprefixer": "^10.4.21",
"chokidar": "^4.0.3",
"concurrently": "^9.1.2",
"playwright": "^1.53.0",
"postcss": "^8.5.5",
"tailwindcss": "^3.4.4"
},
"overrides": {
"glob": "^10.4.5"
}
}