43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "privacy-gateway-backend",
|
|
"version": "1.0.0",
|
|
"description": "Privacy Gateway Backend - Ollama Proxy mit Anonymisierung",
|
|
"main": "dist/server.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/server.js",
|
|
"dev": "tsx src/server.ts",
|
|
"watch": "tsx watch src/server.ts",
|
|
"lint": "eslint src --ext .ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"cors": "^2.8.5",
|
|
"helmet": "^7.1.0",
|
|
"dotenv": "^16.3.1",
|
|
"pg": "^8.11.3",
|
|
"redis": "^4.6.12",
|
|
"uuid": "^9.0.1",
|
|
"express-validator": "^7.0.1",
|
|
"morgan": "^1.10.0",
|
|
"winston": "^3.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/node": "^20.10.5",
|
|
"@types/pg": "^8.10.9",
|
|
"@types/uuid": "^9.0.7",
|
|
"@types/morgan": "^1.9.9",
|
|
"typescript": "^5.3.3",
|
|
"tsx": "^4.7.0",
|
|
"eslint": "^8.56.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
"@typescript-eslint/parser": "^6.15.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|