2026-01-27 04:06:03 +00:00
|
|
|
{
|
|
|
|
|
"name": "cve-dashboard",
|
|
|
|
|
"version": "1.0.0",
|
2026-05-01 21:11:47 +00:00
|
|
|
"description": "STEAM Security Dashboard — vulnerability management for NTS-AEO",
|
2026-05-05 15:47:09 -06:00
|
|
|
"author": "",
|
|
|
|
|
"license": "ISC",
|
2026-05-01 21:11:47 +00:00
|
|
|
"private": true,
|
2026-01-27 04:06:03 +00:00
|
|
|
"scripts": {
|
Add CI/CD pipeline, feedback modal, Atlas qualys_id fallback, and health endpoint
- 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
2026-05-08 12:47:39 -06:00
|
|
|
"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"
|
2026-01-27 04:06:03 +00:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"dependencies": {
|
2026-01-28 14:36:33 -07:00
|
|
|
"bcryptjs": "^3.0.3",
|
|
|
|
|
"cookie-parser": "^1.4.7",
|
2026-01-27 04:06:03 +00:00
|
|
|
"cors": "^2.8.6",
|
2026-01-28 09:23:30 -07:00
|
|
|
"dotenv": "^16.6.1",
|
2026-01-27 04:06:03 +00:00
|
|
|
"express": "^5.2.1",
|
2026-04-07 10:23:10 -06:00
|
|
|
"express-rate-limit": "^7.5.0",
|
2026-01-27 04:06:03 +00:00
|
|
|
"multer": "^2.0.2",
|
2026-05-05 15:47:09 -06:00
|
|
|
"pg": "^8.20.0",
|
2026-01-27 04:06:03 +00:00
|
|
|
"sqlite3": "^5.1.7"
|
2026-04-24 17:30:06 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-05-13 09:40:45 -06:00
|
|
|
"fast-check": "^4.8.0",
|
2026-04-24 17:30:06 +00:00
|
|
|
"jest": "^30.3.0"
|
2026-01-27 04:06:03 +00:00
|
|
|
}
|
|
|
|
|
}
|