Fixed some bugs in api and auth services, completed auth cores.

This commit is contained in:
Giuseppe Raffa
2026-05-25 23:14:50 +02:00
parent 318ea3555f
commit 47faa41eb9
41 changed files with 2061 additions and 101 deletions

View File

@@ -1,18 +1,25 @@
{
"name": "api",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"packageManager": "pnpm@9.15.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"dev": "nodemon src/index.js",
"start": "node src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@11.1.3",
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"@msgpack/msgpack": "^3.1.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.2.1",
"helmet": "^8.1.0",
"ioredis": "^5.10.1",
"pg": "^8.21.0"
"pg": "^8.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}
}