mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-11 22:12:23 +00:00
aab584ca79
Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 8.2.2 to 9.1.2. - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - [Commits](https://github.com/open-cli-tools/concurrently/compare/v8.2.2...v9.1.2) --- updated-dependencies: - dependency-name: concurrently dependency-version: 9.1.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
1.3 KiB
JSON
34 lines
1.3 KiB
JSON
{
|
|
"name": "pulse",
|
|
"version": "3.1.5",
|
|
"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"
|
|
}
|
|
}
|