mirror of
https://github.com/supabase/supabase.git
synced 2026-06-22 02:02:51 +08:00
* Bump nextjs in the ui-library. * Bump the nextjs in design-system. * Bump nextjs to v15 in www. * Bump the next version in the pnpm catalog. * Switch all apps to using the catalog version of next. * Fix ui-lib and design-system to build with next 15. * Fix some prettier errors. * Bump the next-eslint package. * Fix a lint issue about a component starting with underscore. * Use the catalog version of next in cms app. * Disable turbo for dev command in www. Remove obsolete experimental flags. * Return some of the experimental flags.
48 lines
1.8 KiB
JSON
48 lines
1.8 KiB
JSON
{
|
|
"name": "cms",
|
|
"version": "1.0.0",
|
|
"description": "Payload CMS for Supabase",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "cross-env NODE_OPTIONS=--no-deprecation next build --turbopack",
|
|
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev --turbopack --port 3030",
|
|
"devsafe": "rm -rf .next && cross-env NODE_OPTIONS=--no-deprecation next dev",
|
|
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
|
|
"generate:types": "cross-env NODE_OPTIONS=--no-deprecation payload generate:types",
|
|
"lint": "cross-env NODE_OPTIONS=--no-deprecation next lint",
|
|
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
|
|
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
|
|
"ci": "cross-env NODE_OPTIONS=--no-deprecation payload migrate && pnpm build",
|
|
"clean": "rimraf node_modules .next",
|
|
"typecheck_IGNORED": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@payloadcms/db-postgres": "3.33.0",
|
|
"@payloadcms/live-preview-react": "^3.33.0",
|
|
"@payloadcms/next": "3.33.0",
|
|
"@payloadcms/payload-cloud": "3.33.0",
|
|
"@payloadcms/plugin-form-builder": "3.33.0",
|
|
"@payloadcms/plugin-nested-docs": "3.33.0",
|
|
"@payloadcms/plugin-seo": "3.33.0",
|
|
"@payloadcms/richtext-lexical": "3.33.0",
|
|
"@payloadcms/storage-s3": "3.33.0",
|
|
"@payloadcms/ui": "3.33.0",
|
|
"common": "workspace:*",
|
|
"config": "workspace:*",
|
|
"cross-env": "^7.0.3",
|
|
"eslint-config-supabase": "workspace:*",
|
|
"graphql": "^16.8.1",
|
|
"next": "catalog:",
|
|
"payload": "3.33.0",
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:",
|
|
"sharp": "0.32.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "catalog:",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"typescript": "5.7.3"
|
|
}
|
|
}
|