mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 23:05:05 +00:00
- Introduced a new SDK package to replace the previous ssr-sdk, consolidating shared functionality for handling views and reactions. - Updated package.json files across applications to reference the new @afilmory/sdk. - Removed the old ssr-sdk package and its associated files, streamlining the codebase. - Enhanced API routes for reactions and views to utilize the new SDK schemas and client methods. - Updated dependencies in various packages to ensure compatibility and improved functionality. Signed-off-by: Innei <tukon479@gmail.com>
64 lines
1.9 KiB
JSON
64 lines
1.9 KiB
JSON
{
|
|
"name": "@afilmory/ssr",
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"packageManager": "pnpm@10.18.1",
|
|
"description": "",
|
|
"author": "Innei",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "sh scripts/build.sh",
|
|
"build:jpg": "node scripts/webp-to-jpg.js",
|
|
"build:next": "next build",
|
|
"db:generate": "drizzle-kit generate",
|
|
"db:migrate": "drizzle-kit migrate",
|
|
"dev": "concurrently \"pnpm run dev:web\" \"pnpm run dev:next\"",
|
|
"dev:next": "next dev --turbo --port 1924",
|
|
"dev:web": "cross-env DEV_NEXT_JS=true pnpm --filter web dev",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"@afilmory/data": "workspace:*",
|
|
"@afilmory/sdk": "workspace:*",
|
|
"@afilmory/ui": "workspace:*",
|
|
"@afilmory/utils": "workspace:*",
|
|
"@t3-oss/env-nextjs": "0.13.8",
|
|
"clsx": "2.1.1",
|
|
"drizzle-orm": "0.44.7",
|
|
"es-toolkit": "1.41.0",
|
|
"linkedom": "0.18.12",
|
|
"pg": "8.16.3",
|
|
"postgres": "3.4.7",
|
|
"react": "19.2.0",
|
|
"react-dom": "19.2.0",
|
|
"react-responsive-masonry": "2.7.1",
|
|
"react-use": "17.6.0",
|
|
"tailwind-merge": "3.3.1",
|
|
"tailwind-variants": "catalog:",
|
|
"thumbhash": "0.1.1",
|
|
"usehooks-ts": "3.1.1",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@egoist/tailwindcss-icons": "catalog:",
|
|
"@iconify-json/mingcute": "catalog:",
|
|
"@tailwindcss/postcss": "catalog:",
|
|
"@tailwindcss/typography": "catalog:",
|
|
"@types/node": "24.9.2",
|
|
"@types/pg": "8.15.6",
|
|
"@types/react": "19.2.2",
|
|
"@types/react-dom": "19.2.2",
|
|
"concurrently": "9.2.1",
|
|
"cross-env": "10.1.0",
|
|
"dotenv-expand": "catalog:",
|
|
"drizzle-kit": "0.31.6",
|
|
"next": "16.0.1",
|
|
"postcss": "8.5.6",
|
|
"tailwind-scrollbar": "catalog:",
|
|
"tailwindcss": "catalog:",
|
|
"tailwindcss-animate": "catalog:",
|
|
"tailwindcss-safe-area": "catalog:",
|
|
"tailwindcss-uikit-colors": "catalog:"
|
|
}
|
|
}
|