Files
CLProject/package.json
T
2026-04-09 19:27:10 +02:00

21 lines
522 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": "node src/server.js",
"dev": "node --watch src/server.js",
"test:environment": "node scripts/test-environment.js"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"mariadb": "^3.4.0"
}
}