- Rewrite .gitlab-ci.yml with proper stages, blocking tests, staging environment on dev box, and SSH-based production deploy to 71.85.90.6 - Add POST /api/health endpoint for pipeline verification - Add POST /atlas/hosts/:hostId/refresh-cache for Atlas cache staleness - AtlasSlideOutPanel: auto-resolve qualys_id from Atlas vulnerabilities, prefer qualys_id over active_host_findings_id, retry on failure - Add FeedbackModal component with bug report button in header and feature request in UserMenu, creates GitLab issues via /api/feedback - Fix all frontend test failures (ESM transforms, TextDecoder polyfill, fast-check resolution, App.test.js boilerplate replacement) - Fix root package.json test script to run jest - Add deploy/ directory with staging systemd service and setup script
30 lines
791 B
JSON
30 lines
791 B
JSON
{
|
|
"name": "cve-dashboard",
|
|
"version": "1.0.0",
|
|
"description": "STEAM Security Dashboard — vulnerability management for NTS-AEO",
|
|
"author": "",
|
|
"license": "ISC",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "jest --ci --forceExit backend/__tests__/",
|
|
"test:backend": "jest --ci --forceExit backend/__tests__/",
|
|
"test:frontend": "cd frontend && CI=true npx react-scripts test --watchAll=false --ci --forceExit"
|
|
},
|
|
"keywords": [],
|
|
"dependencies": {
|
|
"bcryptjs": "^3.0.3",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2.8.6",
|
|
"dotenv": "^16.6.1",
|
|
"express": "^5.2.1",
|
|
"express-rate-limit": "^7.5.0",
|
|
"multer": "^2.0.2",
|
|
"pg": "^8.20.0",
|
|
"sqlite3": "^5.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"fast-check": "^4.7.0",
|
|
"jest": "^30.3.0"
|
|
}
|
|
}
|