scaffold festival drink tracker (pnpm workspace, Fastify + SQLite, Preact tablet UI, admin)

This commit is contained in:
müde 2026-05-19 18:12:01 +02:00
parent cf33e6ea04
commit e0898bea22
34 changed files with 5446 additions and 0 deletions

25
server/package.json Normal file
View file

@ -0,0 +1,25 @@
{
"name": "server",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/static": "^7.0.4",
"@wutzcalc/shared": "workspace:*",
"better-sqlite3": "^11.0.0",
"fastify": "^4.28.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/node": "^20.12.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
}
}