Files

99 lines
2.9 KiB
JSON
Raw Permalink Normal View History

2025-06-22 10:02:50 +02:00
{
2026-01-31 00:20:04 +01:00
"name": "@opencut/web",
2025-06-22 10:02:50 +02:00
"version": "0.1.0",
"private": true,
2025-07-08 13:24:33 +05:00
"packageManager": "bun@1.2.18",
2025-06-22 10:02:50 +02:00
"scripts": {
2025-08-11 22:24:54 +02:00
"dev": "next dev --turbopack",
2025-06-22 10:02:50 +02:00
"build": "next build",
"start": "next start",
2025-07-21 19:33:06 +07:00
"lint": "biome check src/",
"lint:fix": "biome check src/ --write",
"format": "biome format src/ --write",
2025-06-22 13:07:02 +02:00
"db:generate": "drizzle-kit generate",
2025-06-23 13:37:33 +03:00
"db:migrate": "drizzle-kit migrate",
2025-06-22 13:07:02 +02:00
"db:push:local": "cross-env NODE_ENV=development drizzle-kit push",
"db:push:prod": "cross-env NODE_ENV=production drizzle-kit push"
2025-06-22 10:02:50 +02:00
},
"dependencies": {
2025-06-23 10:33:03 +03:00
"@ffmpeg/core": "^0.12.10",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@hello-pangea/dnd": "^18.0.1",
2025-06-22 10:02:50 +02:00
"@hookform/resolvers": "^3.9.1",
2026-01-31 00:20:04 +01:00
"@hugeicons/core-free-icons": "^3.1.1",
"@hugeicons/react": "^1.1.4",
"@huggingface/transformers": "^3.8.1",
"@opencut/env": "workspace:*",
"@opencut/ui": "workspace:*",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@upstash/ratelimit": "^2.0.6",
"@upstash/redis": "^1.35.4",
2025-06-22 10:02:50 +02:00
"@vercel/analytics": "^1.4.1",
2025-08-11 22:24:54 +02:00
"aws4fetch": "^1.0.20",
2025-06-22 13:07:02 +02:00
"better-auth": "^1.2.7",
2025-07-16 01:00:40 +01:00
"botid": "^1.4.2",
2025-06-22 10:02:50 +02:00
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"dayjs": "^1.11.13",
2025-06-22 13:07:02 +02:00
"drizzle-orm": "^0.44.2",
2025-06-22 10:02:50 +02:00
"embla-carousel-react": "^8.5.1",
2026-01-31 00:20:04 +01:00
"eventemitter3": "^5.0.1",
2025-07-23 15:11:10 +01:00
"feed": "^5.1.0",
2025-06-22 10:02:50 +02:00
"input-otp": "^1.4.1",
2026-01-31 00:20:04 +01:00
"lucide-react": "^0.562.0",
"mediabunny": "^1.29.1",
2025-06-22 13:07:02 +02:00
"motion": "^12.18.1",
2025-08-11 22:24:54 +02:00
"nanoid": "^5.1.5",
2026-01-31 00:20:04 +01:00
"next": "16.1.3",
2025-06-22 10:02:50 +02:00
"next-themes": "^0.4.4",
2025-06-22 13:07:02 +02:00
"pg": "^8.16.2",
2026-01-31 00:20:04 +01:00
"postgres": "^3.4.5",
"radix-ui": "^1.4.2",
2026-01-31 22:24:22 +01:00
"react": "^19.0.0",
2025-06-22 10:02:50 +02:00
"react-day-picker": "^8.10.1",
2026-01-31 22:24:22 +01:00
"react-dom": "^19.0.0",
2025-06-22 10:02:50 +02:00
"react-hook-form": "^7.54.0",
"react-icons": "^5.4.0",
"react-markdown": "^10.1.0",
2025-06-22 10:02:50 +02:00
"react-phone-number-input": "^3.4.11",
"react-resizable-panels": "^2.1.7",
"recharts": "^2.14.1",
2025-07-21 23:18:07 +02:00
"rehype-autolink-headings": "^7.1.0",
"rehype-parse": "^9.0.1",
2025-07-21 23:45:02 +02:00
"rehype-sanitize": "^6.0.0",
2025-07-21 23:18:07 +02:00
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
2025-06-22 10:02:50 +02:00
"sonner": "^1.7.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
2025-07-21 23:18:07 +02:00
"unified": "^11.0.5",
2026-01-31 00:20:04 +01:00
"use-deep-compare-effect": "^1.8.1",
2025-06-22 10:02:50 +02:00
"vaul": "^1.1.1",
2026-01-31 00:20:04 +01:00
"wavesurfer.js": "^7.9.8",
"zod": "^3.25.67",
2025-06-22 10:02:50 +02:00
"zustand": "^5.0.2"
},
"devDependencies": {
2025-07-30 13:15:09 -04:00
"@tailwindcss/postcss": "^4.1.11",
2025-07-21 23:18:07 +02:00
"@tailwindcss/typography": "^0.5.16",
2025-06-22 10:02:50 +02:00
"@types/bun": "latest",
"@types/node": "^24.2.1",
2025-07-17 17:08:33 +02:00
"@types/pg": "^8.15.4",
2026-01-31 22:24:22 +01:00
"@types/react": "^19",
"@types/react-dom": "^19",
2025-06-22 14:27:44 +02:00
"cross-env": "^7.0.3",
2025-07-14 16:20:52 +02:00
"drizzle-kit": "^0.31.4",
2026-01-31 00:20:04 +01:00
"dotenv": "^16.5.0",
2025-06-22 10:02:50 +02:00
"postcss": "^8",
2025-07-30 13:15:09 -04:00
"tailwindcss": "^4.1.11",
2025-06-22 10:02:50 +02:00
"tsx": "^4.7.1",
2025-08-13 17:05:17 +02:00
"typescript": "^5.8.3"
2025-06-22 10:02:50 +02:00
}
2025-07-08 13:24:33 +05:00
}