Files
dashboard/sync/package.json
Matthias Hochmeister 42b9937da4 fix(sync): move typescript to dependencies to fix Docker build
npm silently skips devDependencies in some Alpine+npm combinations,
causing tsc to be missing even after npm install. Moving typescript
to regular dependencies guarantees it is always installed and its
.bin symlink is created regardless of NODE_ENV.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-13 12:12:57 +01:00

23 lines
492 B
JSON

{
"name": "fdisk-sync",
"version": "1.0.0",
"description": "FDISK → Feuerwehr Dashboard sync service",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts"
},
"dependencies": {
"@playwright/test": "^1.47.0",
"pg": "^8.11.0",
"dotenv": "^16.0.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/pg": "^8.10.0",
"ts-node": "^10.9.0"
}
}