mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-10 10:35:51 +00:00
32 lines
968 B
JSON
32 lines
968 B
JSON
{
|
|
"name": "pulse",
|
|
"version": "3.1.1",
|
|
"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 --minify",
|
|
"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": "^8.2.2",
|
|
"tailwindcss": "^4.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^10.4.21",
|
|
"postcss": "^8.5.3"
|
|
}
|
|
}
|