Files
portabase/package.json
T

136 lines
4.5 KiB
JSON
Raw Normal View History

2024-11-03 11:30:44 +01:00
{
2025-10-27 18:49:24 +01:00
"name": "portabase",
2026-03-06 08:55:03 +00:00
"version": "1.4.35",
2025-10-27 18:49:24 +01:00
"private": true,
"scripts": {
2026-02-02 21:46:53 +01:00
"dev": "next dev --turbopack -p 8887",
2026-02-01 15:53:50 +01:00
"build": "next build --experimental-build-mode compile",
2026-02-02 21:46:53 +01:00
"start": "next start",
2025-10-27 18:49:24 +01:00
"lint": "next lint",
2025-11-22 17:20:52 +01:00
"email": "email dev --dir ./src/components/emails",
2025-10-27 18:49:24 +01:00
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:drop": "drizzle-kit drop",
2026-03-03 16:39:59 +01:00
"auth:generate": "npx @better-auth/cli generate --config ./src/lib/auth/auth.ts",
"release": "release-it"
2025-10-27 18:49:24 +01:00
},
"dependencies": {
"@better-auth/passkey": "^1.4.19",
"@better-auth/sso": "^1.4.19",
2026-02-11 15:43:03 +01:00
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
2025-10-27 18:49:24 +01:00
"@radix-ui/react-icons": "^1.3.2",
2026-02-11 15:43:03 +01:00
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
2025-10-27 18:49:24 +01:00
"@react-email/components": "^0.0.41",
2026-02-11 15:43:03 +01:00
"@t3-oss/env-nextjs": "^0.13.10",
"@tanstack/react-query": "^5.90.21",
2025-10-27 18:49:24 +01:00
"@tanstack/react-table": "^8.21.3",
"@types/nodemailer": "^6.4.23",
2025-10-27 18:49:24 +01:00
"@types/ws": "^8.18.1",
"@zenstackhq/runtime": "2.14.2",
2026-02-11 15:43:03 +01:00
"argon2": "^0.43.1",
2025-10-27 18:49:24 +01:00
"bcrypt": "^6.0.0",
"better-auth": "1.4.18",
2025-10-27 18:49:24 +01:00
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
2026-02-11 15:43:03 +01:00
"dockerode": "^4.0.9",
"dotenv": "^16.6.1",
2025-10-27 18:49:24 +01:00
"drizzle-orm": "^0.43.1",
"drizzle-zod": "^0.7.1",
"embla-carousel-react": "^8.6.0",
2026-01-24 00:26:05 +01:00
"googleapis": "^170.1.0",
2025-10-27 18:49:24 +01:00
"input-otp": "^1.4.2",
2025-11-08 20:07:49 +01:00
"lucide-react": "^0.553.0",
2026-02-11 15:43:03 +01:00
"minio": "^8.0.6",
"motion": "^12.34.3",
2026-02-01 15:53:50 +01:00
"next": "16.1.5",
2025-10-27 18:49:24 +01:00
"next-safe-action": "^7.10.8",
"next-themes": "^0.4.6",
"node-cron": "^4.2.1",
2026-02-11 15:43:03 +01:00
"node-forge": "^1.3.3",
"nodemailer": "^7.0.13",
"npm-check-updates": "^18.3.1",
"pg": "^8.18.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
2025-10-27 18:49:24 +01:00
"react-day-picker": "9.7.0",
2026-02-11 15:43:03 +01:00
"react-dom": "^19.2.4",
"react-dropzone": "^14.4.1",
"react-email": "^4.3.2",
"react-hook-form": "^7.71.2",
2025-12-21 16:55:12 +01:00
"react-qr-code": "^2.0.18",
2026-02-11 15:43:03 +01:00
"react-resizable-panels": "^3.0.6",
"react-twc": "^1.5.1",
2025-11-08 20:07:49 +01:00
"react-use-measure": "^2.1.7",
2026-02-11 15:43:03 +01:00
"recharts": "^2.15.4",
2026-01-24 13:14:38 +01:00
"sharp": "^0.34.5",
2026-02-11 15:43:03 +01:00
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"sonner": "^2.0.7",
"swiper": "^12.1.2",
"tailwind-merge": "^3.5.0",
2025-10-27 18:49:24 +01:00
"uuid": "^11.1.0",
"vaul": "^1.1.2",
2026-02-11 15:43:03 +01:00
"ws": "^8.19.0",
"zod": "^3.25.76"
2025-10-27 18:49:24 +01:00
},
"devDependencies": {
2026-02-11 15:43:03 +01:00
"@iconify/react": "^6.0.2",
2025-11-22 17:20:52 +01:00
"@react-email/preview-server": "4.3.2",
2026-02-11 15:43:03 +01:00
"@react-email/render": "^2.0.4",
2026-03-03 16:50:36 +01:00
"@release-it/bumper": "^7.0.5",
2026-03-03 16:39:59 +01:00
"@release-it/conventional-changelog": "^10.0.5",
"@tailwindcss/postcss": "^4.2.1",
2025-10-27 18:49:24 +01:00
"@types/eslint-plugin-tailwindcss": "^3.17.0",
2026-02-11 15:43:03 +01:00
"@types/node": "^22.19.11",
"@types/node-forge": "^1.3.14",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@zenstackhq/openapi": "^2.22.1",
"@zenstackhq/tanstack-query": "^2.22.2",
"baseline-browser-mapping": "^2.10.0",
2026-02-11 15:43:03 +01:00
"drizzle-kit": "^0.31.9",
"esbuild": "^0.27.3",
"eslint": "^9.39.3",
2026-02-11 15:43:03 +01:00
"eslint-config-next": "^16.1.6",
"eslint-plugin-tailwindcss": "^3.18.2",
"framer-motion": "^12.34.3",
2026-02-11 15:43:03 +01:00
"postcss": "^8.5.6",
2026-03-03 16:39:59 +01:00
"release-it": "^19.2.4",
"tailwindcss": "^4.2.1",
2026-02-11 15:43:03 +01:00
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
2025-10-27 18:49:24 +01:00
"zenstack": "2.14.2"
},
"packageManager": "pnpm@10.30.1+sha512.3590e550d5384caa39bd5c7c739f72270234b2f6059e13018f975c313b1eb9fefcc09714048765d4d9efe961382c312e624572c0420762bdc5d5940cdf9be73a"
2024-11-03 11:30:44 +01:00
}