feat(auth): implement user authentication system

This commit is contained in:
J.A.R.V.I.S. 2026-03-19 23:07:24 +00:00
parent 97116fed1c
commit 4847ab793a
7199 changed files with 38207 additions and 747767 deletions

View file

@ -1,22 +1,21 @@
{
"name": "helpyourneighbour",
"version": "1.0.0",
"description": "Backend for helpyourneighbour project",
"main": "backend/app.js",
"description": "Help your neighbour project",
"main": "src/server.js",
"scripts": {
"test": "node test/roles.test.js",
"start": "node backend/app.js"
"start": "node src/server.js",
"dev": "nodemon src/server.js"
},
"dependencies": {
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mysql2": "^3.6.0"
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"chai": "^4.3.7",
"jest": "^30.3.0",
"mocha": "^10.2.0",
"sinon": "^15.2.0",
"supertest": "^7.2.2"
"nodemon": "^3.0.1"
}
}