Added basic Auth-Service features

This commit is contained in:
Giuseppe Raffa
2026-05-21 10:56:25 +02:00
commit 318ea3555f
17 changed files with 2144 additions and 0 deletions

26
auth/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "auth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"type": "module",
"license": "ISC",
"packageManager": "pnpm@10.26.2",
"dependencies": {
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"express": "^5.2.1",
"ioredis": "^5.10.1",
"jsonwebtoken": "^9.0.3",
"pg": "^8.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}