Initial Commit with Working server and metrics

This commit is contained in:
2025-10-11 21:41:03 +02:00
commit 368383ba5c
16 changed files with 2839 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "epirent-cache-proxy",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts"
},
"dependencies": {
"dotenv": "^17.2.3",
"express": "^4.19.2",
"lru-cache": "^10.4.3",
"node-fetch": "^3.3.2",
"prom-client": "^15.1.3",
"redis": "^4.7.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.7.5",
"tsx": "^4.18.0",
"typescript": "^5.6.3"
}
}