Features: - Backend: Node.js/Express mit MySQL/MariaDB - Frontend: Vue.js 3 mit Composition API - UTC-Zeithandling für korrekte Zeiterfassung - Timewish-basierte Überstundenberechnung - Wochenübersicht mit Urlaubs-/Krankheits-/Feiertagshandling - Bereinigtes Arbeitsende (Generell/Woche) - Überstunden-Offset für historische Daten - Fixed Layout mit scrollbarem Content - Kompakte UI mit grünem Theme
34 lines
782 B
JSON
34 lines
782 B
JSON
{
|
|
"name": "timeclock",
|
|
"version": "3.0.0",
|
|
"description": "TimeClock v3 - Full-Stack Zeiterfassungsanwendung",
|
|
"private": true,
|
|
"workspaces": [
|
|
"backend",
|
|
"frontend"
|
|
],
|
|
"scripts": {
|
|
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
|
|
"dev:backend": "cd backend && npm run dev",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
|
|
"start:backend": "cd backend && npm start",
|
|
"build:frontend": "cd frontend && npm run build"
|
|
},
|
|
"keywords": [
|
|
"timeclock",
|
|
"zeiterfassung",
|
|
"time-tracking",
|
|
"vue3",
|
|
"nodejs"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2"
|
|
}
|
|
}
|
|
|
|
|
|
|