mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-22 22:02:00 +00:00
- Introduced a new Makefile target `update-version` to streamline version updates across all package.json files. - Added a script `update-versions.sh` to automate the version number update process. - Updated package versions in `apps/docs`, `apps/server`, and `apps/web` to `3.1-beta` for consistency. - Enhanced the build process to include version updates before building the Docker image.
94 lines
3.0 KiB
JSON
94 lines
3.0 KiB
JSON
{
|
|
"name": "palmr-frontend",
|
|
"version": "3.1-beta",
|
|
"description": "Frontend for Palmr",
|
|
"private": true,
|
|
"author": "Daniel Luiz Alves <daniel@kyantech.com.br>",
|
|
"keywords": [
|
|
"palmr",
|
|
"frontend",
|
|
"nextjs",
|
|
"react",
|
|
"typescript"
|
|
],
|
|
"license": "BSD-2-Clause Copyright 2023 Kyantech",
|
|
"packageManager": "pnpm@10.6.0",
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint \"src/**/*.+(ts|tsx)\"",
|
|
"lint:fix": "eslint \"src/**/*.+(ts|tsx)\" --fix",
|
|
"format": "prettier . --write",
|
|
"format:check": "prettier . --check",
|
|
"translations": "python3 scripts/run_translations.py all",
|
|
"translations:check": "python3 scripts/run_translations.py check",
|
|
"translations:sync": "python3 scripts/run_translations.py sync",
|
|
"translations:dry-run": "python3 scripts/run_translations.py all --dry-run",
|
|
"translations:help": "python3 scripts/run_translations.py help"
|
|
},
|
|
"dependencies": {
|
|
"@hello-pangea/dnd": "^18.0.1",
|
|
"@hookform/resolvers": "^5.0.1",
|
|
"@radix-ui/react-aspect-ratio": "^1.1.3",
|
|
"@radix-ui/react-avatar": "^1.1.4",
|
|
"@radix-ui/react-checkbox": "^1.3.2",
|
|
"@radix-ui/react-dialog": "^1.1.6",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.6",
|
|
"@radix-ui/react-label": "^2.1.2",
|
|
"@radix-ui/react-progress": "^1.1.3",
|
|
"@radix-ui/react-scroll-area": "^1.2.4",
|
|
"@radix-ui/react-select": "^2.1.7",
|
|
"@radix-ui/react-separator": "^1.1.3",
|
|
"@radix-ui/react-slider": "^1.3.5",
|
|
"@radix-ui/react-slot": "^1.1.2",
|
|
"@radix-ui/react-switch": "^1.1.4",
|
|
"@radix-ui/react-tabs": "^1.1.12",
|
|
"@tabler/icons-react": "^3.31.0",
|
|
"@types/react-dropzone": "^5.1.0",
|
|
"axios": "^1.8.4",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"framer-motion": "^12.6.3",
|
|
"js-cookie": "^3.0.5",
|
|
"jszip": "^3.10.1",
|
|
"lucide-react": "^0.487.0",
|
|
"nanoid": "^5.1.5",
|
|
"next": "15.2.4",
|
|
"next-intl": "^4.0.2",
|
|
"next-themes": "^0.4.6",
|
|
"nookies": "^2.5.2",
|
|
"react": "^19.1.0",
|
|
"react-country-flag": "^3.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"react-dropzone": "^14.3.8",
|
|
"react-hook-form": "^7.55.0",
|
|
"react-icons": "^5.5.0",
|
|
"sonner": "^2.0.3",
|
|
"tailwind-merge": "^3.1.0",
|
|
"tw-animate-css": "^1.2.5",
|
|
"zod": "^3.24.2",
|
|
"zustand": "^5.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "3.3.1",
|
|
"@eslint/js": "9.23.0",
|
|
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
|
|
"@tailwindcss/postcss": "4.1.2",
|
|
"@types/js-cookie": "^3.0.6",
|
|
"@types/node": "22.14.0",
|
|
"@types/react": "19.1.0",
|
|
"@types/react-dom": "19.1.1",
|
|
"@typescript-eslint/eslint-plugin": "8.29.0",
|
|
"@typescript-eslint/parser": "8.29.0",
|
|
"eslint": "9.23.0",
|
|
"eslint-config-next": "15.2.4",
|
|
"eslint-config-prettier": "9.1.0",
|
|
"eslint-plugin-prettier": "5.2.6",
|
|
"prettier": "3.5.3",
|
|
"prettier-plugin-sort-json": "4.1.1",
|
|
"tailwindcss": "4.1.2",
|
|
"typescript": "5.8.2"
|
|
}
|
|
} |