Files
Trackeep/frontend/package.json
T
Tomas Dvorak 3b8e14c6b8 chore: update to v1.2.5 and simplify version management
🎯 Simplified Version System:
- Update frontend/backend to v1.2.5 in package.json and go.mod
- Frontend reads version from package.json directly
- Backend reads version from go.mod directly
- No environment variables needed for versioning

🔄 Automated Release Workflow:
- GitHub Actions automatically updates all version files
- Extracts version from Git tag (v1.2.5)
- Updates package.json, go.mod, docker-compose files
- Builds and pushes Docker images with proper tags
- Creates GitHub release automatically

🚀 User Experience:
- Just: docker compose up
- System auto-detects version from code
- Updates work with no manual setup
- Proper semantic versioning (MAJOR.MINOR.PATCH)

Ready for automated release!
2026-02-27 19:08:24 +01:00

39 lines
1.0 KiB
JSON

{
"name": "frontend",
"private": true,
"version": "1.2.5",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "echo \"No tests yet\" && exit 0",
"test:ci": "echo \"No tests yet\" && exit 0"
},
"dependencies": {
"@kobalte/core": "^0.13.11",
"@solidjs/router": "^0.15.4",
"@tabler/icons": "^3.36.1",
"@tabler/icons-solidjs": "^3.36.1",
"@tanstack/solid-query": "^5.90.23",
"@unocss/preset-attributify": "^66.6.0",
"@unocss/preset-icons": "^66.6.0",
"@unocss/preset-uno": "^66.6.0",
"@unocss/reset": "^66.6.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-solid": "^0.460.0",
"solid-js": "^1.9.10",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@types/node": "^24.10.9",
"@unocss/preset-wind": "^66.6.0",
"terser": "^5.46.0",
"typescript": "~5.9.3",
"unocss": "^66.6.0",
"vite": "^7.2.4",
"vite-plugin-solid": "^2.11.10"
}
}