Files
CLProject/package.json
T
2026-04-22 22:39:26 +02:00

22 lines
575 B
JSON

{
"name": "check-list-poc-api",
"version": "0.1.0",
"description": "Proof-of-concept backend for the Check List hybrid quality reporting solution.",
"type": "module",
"main": "src/server.js",
"scripts": {
"start": "bun src/server.js",
"dev": "bun --watch src/server.js",
"test:environment": "bun scripts/test-environment.js"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"mariadb": "^3.4.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
}
}