Add unit tests for role middleware and package.json
Some checks are pending
Docker Test / test (push) Waiting to run

This commit is contained in:
BibaBot Jarvis 2026-03-16 13:10:19 +00:00
parent 73a2dc22f9
commit cb0e31b668
2 changed files with 28 additions and 2 deletions

18
package.json Normal file
View file

@ -0,0 +1,18 @@
{
"name": "helpyourneighbour",
"version": "1.0.0",
"description": "Backend for helpyourneighbour project",
"main": "backend/app.js",
"scripts": {
"test": "node test/roles.test.js",
"start": "node backend/app.js"
},
"dependencies": {
"express": "^4.18.2",
"mysql2": "^3.6.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"node:test": "^22.2.0"
}
}