Files
stechuhr3/package.json
Torsten Schulz (local) c239ef19d1
All checks were successful
Deploy production / deploy (push) Successful in 1m1s
Aktualisiere die Version auf 3.1.1 und entferne die veraltete APP_VERSION-Konstante
2026-08-27 07:30:38 +02:00

34 lines
782 B
JSON
Executable File

{
"name": "timeclock",
"version": "3.1.1",
"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"
}
}