Initial TicketTracker release

This commit is contained in:
2026-08-05 10:55:30 +02:00
commit 125b1d22ff
128 changed files with 26208 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"name": "tickettracker",
"version": "1.0.0",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"overrides": {
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"scripts": {
"dev": "npm run dev --workspace frontend",
"dev:backend": "npm run dev --workspace backend",
"dev:frontend": "npm run dev --workspace frontend",
"build": "npm run build --workspace backend && npm run build --workspace frontend",
"start": "./scripts/start-container.sh",
"start:local": "./scripts/start-local.sh",
"serve:local": "./scripts/start-local.sh",
"typecheck": "npm run typecheck --workspace backend && npm run typecheck --workspace frontend"
},
"engines": {
"node": ">=22"
},
"overrides": {
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4"
}
}