initial release

This commit is contained in:
Dennis Gunia
2026-01-08 19:10:51 +01:00
commit 3f1a218ea2
16 changed files with 1009 additions and 0 deletions

31
api-gateway/package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "api-gateway",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dennis Gunia",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/axios": "^0.14.4",
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"helmet": "^8.1.0",
"http": "^0.0.1-security",
"https": "^1.0.0",
"node-cache": "^5.1.2",
"node-html-parser": "^7.0.2"
}
}