Files
cve-dashboard/package.json

39 lines
948 B
JSON
Raw Normal View History

2026-01-27 04:06:03 +00:00
{
"name": "cve-dashboard",
"version": "1.0.0",
"description": "STEAM Security Dashboard — vulnerability management for NTS-AEO",
"author": "",
"license": "ISC",
"private": true,
2026-01-27 04:06:03 +00:00
"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"
2026-01-27 04:06:03 +00:00
},
"keywords": [],
"dependencies": {
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
2026-01-27 04:06:03 +00:00
"cors": "^2.8.6",
"dotenv": "^16.6.1",
2026-01-27 04:06:03 +00:00
"express": "^5.2.1",
"express-rate-limit": "^7.5.0",
2026-01-27 04:06:03 +00:00
"multer": "^2.0.2",
"pg": "^8.20.0",
2026-01-27 04:06:03 +00:00
"sqlite3": "^5.1.7"
},
"devDependencies": {
"fast-check": "^4.8.0",
"jest": "^30.3.0"
},
"jest": {
"roots": [
"<rootDir>/backend/__tests__"
],
"testPathIgnorePatterns": [
"/node_modules/",
"integration"
]
2026-01-27 04:06:03 +00:00
}
}