Files
patchmon.net/package.json
Muhammad Ibrahim 8c538bd99c Merge changes from main: Add GetHomepage integration and update to v1.2.9
- Added gethomepageRoutes.js for GetHomepage integration
- Updated all package.json files to version 1.2.9
- Updated agent script to version 1.2.9
- Updated version fallbacks in versionRoutes.js and updateScheduler.js
- Updated setup.sh with version 1.2.9
- Merged GetHomepage integration UI (Integrations.jsx)
- Updated docker-entrypoint.sh from main
- Updated VersionUpdateTab component
- Combined automation and gethomepage routes in server.js
- Maintains both BullMQ automation and GetHomepage functionality
2025-10-11 20:35:47 +01:00

36 lines
1.0 KiB
JSON

{
"name": "patchmon",
"version": "1.2.9",
"description": "Linux Patch Monitoring System",
"license": "AGPL-3.0",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"install:all": "npm install && npm run install:backend && npm run install:frontend",
"install:backend": "cd backend && npm install",
"install:frontend": "cd frontend && npm install",
"prepare": "lefthook install",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"build": "npm run build:backend && npm run build:frontend",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome check .",
"lint:fix": "biome check --write ."
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"concurrently": "^8.2.2",
"lefthook": "^1.13.4"
},
"engines": {
"node": ">=18.0.0"
}
}