xpeditis2.0/apps/log-exporter/package.json
David 6a38c236b2 feat: add centralized logging stack with log exporter
- Add Loki + Promtail + Grafana logging infrastructure
- Add log-exporter service (REST API to query logs)
- Add docker-compose.logging.yml (standalone logging stack)
- Add docker-compose.full.yml (merged dev + logging in one file)
- Update docker-compose.dev.yml with network labels for Promtail
- Add admin logs dashboard page
- Fix invitation DTO and users settings page

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-02 12:46:10 +02:00

16 lines
383 B
JSON

{
"name": "xpeditis-log-exporter",
"version": "1.0.0",
"description": "Log export API for Xpeditis - queries Loki and exports logs as CSV/JSON",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js"
},
"dependencies": {
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"json2csv": "^6.0.0-alpha.2"
}
}