mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-10 02:25:56 +00:00
34 lines
1.3 KiB
JSON
34 lines
1.3 KiB
JSON
{
|
|
"name": "pulse",
|
|
"version": "3.2.0",
|
|
"description": "A lightweight monitoring application for Proxmox VE.",
|
|
"main": "server/index.js",
|
|
"scripts": {
|
|
"start": "cd server && node index.js",
|
|
"dev:server": "NODE_ENV=development node -r dotenv/config --env-file=.env server/index.js",
|
|
"dev:css": "tailwindcss -c ./src/tailwind.config.js -i ./src/index.css -o ./src/public/output.css --watch",
|
|
"build:css": "tailwindcss -c ./src/tailwind.config.js -i ./src/index.css -o ./src/public/output.css",
|
|
"dev": "concurrently \"npm:dev:server\" \"npm:dev:css\"",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"proxmox",
|
|
"monitoring",
|
|
"dashboard",
|
|
"nodejs",
|
|
"vuejs"
|
|
],
|
|
"author": "Richard Courtman",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"concurrently": "^9.1.2"
|
|
},
|
|
"_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": {
|
|
"autoprefixer": "^10.4.21",
|
|
"dotenv": "^16.5.0",
|
|
"postcss": "^8.5.3",
|
|
"tailwindcss": "^3.4.4"
|
|
}
|
|
}
|