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

24
stream/package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "stream",
"version": "1.0.0",
"description": "MEB stream service — sensor WebSocket ingest to InfluxDB",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js"
},
"type": "module",
"license": "ISC",
"packageManager": "pnpm@9.15.0",
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"@msgpack/msgpack": "^3.1.2",
"express": "^5.2.1",
"ioredis": "^5.10.1",
"pg": "^8.21.0",
"ws": "^8.18.0"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}