Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions templates/blank/src/payload-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export interface Config {
db: {
defaultIDType: string;
};
fallbackLocale: null;
globals: {};
globalsSelect: {};
locale: null;
Expand Down
1 change: 1 addition & 0 deletions templates/ecommerce/src/payload-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ export interface Config {
db: {
defaultIDType: string;
};
fallbackLocale: null;
globals: {
header: Header;
footer: Footer;
Expand Down
1 change: 1 addition & 0 deletions templates/website/src/payload-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export interface Config {
db: {
defaultIDType: string;
};
fallbackLocale: null;
globals: {
header: Header;
footer: Footer;
Expand Down
12 changes: 6 additions & 6 deletions templates/with-cloudflare-d1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
},
"dependencies": {
"@opennextjs/cloudflare": "^1.6.5",
"@payloadcms/db-d1-sqlite": "3.63.0",
"@payloadcms/next": "3.63.0",
"@payloadcms/richtext-lexical": "3.63.0",
"@payloadcms/storage-r2": "3.63.0",
"@payloadcms/ui": "3.63.0",
"@payloadcms/db-d1-sqlite": "3.65.0",
"@payloadcms/next": "3.65.0",
"@payloadcms/richtext-lexical": "3.65.0",
"@payloadcms/storage-r2": "3.65.0",
"@payloadcms/ui": "3.65.0",
"cross-env": "^7.0.3",
"dotenv": "16.4.7",
"graphql": "^16.8.1",
"next": "15.4.7",
"payload": "3.63.0",
"payload": "3.65.0",
"react": "19.1.0",
"react-dom": "19.1.0"
},
Expand Down
1 change: 1 addition & 0 deletions templates/with-cloudflare-d1/src/payload-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export interface Config {
db: {
defaultIDType: number;
};
fallbackLocale: null;
globals: {};
globalsSelect: {};
locale: null;
Expand Down
16 changes: 8 additions & 8 deletions templates/with-postgres/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"type": "module",
"scripts": {
"build": "cross-env NODE_OPTIONS=--no-deprecation next build",
"ci": "payload migrate && pnpm build",
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
"devsafe": "rm -rf .next && cross-env NODE_OPTIONS=--no-deprecation next dev",
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
Expand All @@ -15,21 +16,20 @@
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"test": "pnpm run test:int && pnpm run test:e2e",
"test:e2e": "cross-env NODE_OPTIONS=\"--no-deprecation --no-experimental-strip-types\" pnpm exec playwright test",
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts",
"ci": "payload migrate && pnpm build"
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts"
},
"dependencies": {
"@payloadcms/next": "3.63.0",
"@payloadcms/richtext-lexical": "3.63.0",
"@payloadcms/ui": "3.63.0",
"@payloadcms/db-postgres": "3.65.0",
"@payloadcms/next": "3.65.0",
"@payloadcms/richtext-lexical": "3.65.0",
"@payloadcms/ui": "3.65.0",
"cross-env": "^7.0.3",
"graphql": "^16.8.1",
"next": "15.4.7",
"payload": "3.63.0",
"payload": "3.65.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"sharp": "0.34.2",
"@payloadcms/db-postgres": "3.63.0"
"sharp": "0.34.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{
"id": "255dcb47-65ad-46bd-9bd7-6d5581478a90",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "7",
"dialect": "postgresql",
"tables": {
Expand Down Expand Up @@ -935,5 +933,7 @@
"schemas": {},
"tables": {},
"columns": {}
}
},
"id": "a030f342-c177-4e47-84e3-83c98423ad88",
"prevId": "00000000-0000-0000-0000-000000000000"
}
8 changes: 4 additions & 4 deletions templates/with-postgres/src/migrations/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import * as migration_20251107_183854_initial from './20251107_183854_initial'
import * as migration_20251125_185456_initial from './20251125_185456_initial'

export const migrations = [
{
up: migration_20251107_183854_initial.up,
down: migration_20251107_183854_initial.down,
name: '20251107_183854_initial',
up: migration_20251125_185456_initial.up,
down: migration_20251125_185456_initial.down,
name: '20251125_185456_initial',
},
]
1 change: 1 addition & 0 deletions templates/with-postgres/src/payload-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export interface Config {
db: {
defaultIDType: number;
};
fallbackLocale: null;
globals: {};
globalsSelect: {};
locale: null;
Expand Down
18 changes: 9 additions & 9 deletions templates/with-vercel-mongodb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts"
},
"dependencies": {
"@payloadcms/db-mongodb": "3.63.0",
"@payloadcms/next": "3.63.0",
"@payloadcms/richtext-lexical": "3.63.0",
"@payloadcms/ui": "3.63.0",
"@payloadcms/db-mongodb": "3.65.0",
"@payloadcms/next": "3.65.0",
"@payloadcms/richtext-lexical": "3.65.0",
"@payloadcms/storage-vercel-blob": "3.65.0",
"@payloadcms/ui": "3.65.0",
"cross-env": "^7.0.3",
"graphql": "^16.8.1",
"next": "15.4.7",
"payload": "3.63.0",
"payload": "3.65.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"@payloadcms/storage-vercel-blob": "3.63.0"
"react-dom": "19.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
Expand All @@ -48,6 +48,7 @@
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.2 || >=20.9.0"
},
Expand All @@ -57,6 +58,5 @@
"esbuild",
"unrs-resolver"
]
},
"packageManager": "[email protected]"
}
}
1 change: 1 addition & 0 deletions templates/with-vercel-mongodb/src/payload-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export interface Config {
db: {
defaultIDType: string;
};
fallbackLocale: null;
globals: {};
globalsSelect: {};
locale: null;
Expand Down
22 changes: 11 additions & 11 deletions templates/with-vercel-postgres/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"type": "module",
"scripts": {
"build": "cross-env NODE_OPTIONS=--no-deprecation next build",
"ci": "payload migrate && pnpm build",
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
"devsafe": "rm -rf .next && cross-env NODE_OPTIONS=--no-deprecation next dev",
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
Expand All @@ -15,21 +16,20 @@
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"test": "pnpm run test:int && pnpm run test:e2e",
"test:e2e": "cross-env NODE_OPTIONS=\"--no-deprecation --no-experimental-strip-types\" pnpm exec playwright test",
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts",
"ci": "payload migrate && pnpm build"
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts"
},
"dependencies": {
"@payloadcms/next": "3.63.0",
"@payloadcms/richtext-lexical": "3.63.0",
"@payloadcms/ui": "3.63.0",
"@payloadcms/db-vercel-postgres": "3.65.0",
"@payloadcms/next": "3.65.0",
"@payloadcms/richtext-lexical": "3.65.0",
"@payloadcms/storage-vercel-blob": "3.65.0",
"@payloadcms/ui": "3.65.0",
"cross-env": "^7.0.3",
"graphql": "^16.8.1",
"next": "15.4.7",
"payload": "3.63.0",
"payload": "3.65.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"@payloadcms/db-vercel-postgres": "3.63.0",
"@payloadcms/storage-vercel-blob": "3.63.0"
"react-dom": "19.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
Expand All @@ -49,6 +49,7 @@
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.2 || >=20.9.0"
},
Expand All @@ -58,6 +59,5 @@
"esbuild",
"unrs-resolver"
]
},
"packageManager": "[email protected]"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{
"id": "b1eec400-2402-4b9e-a2a6-1c3abe4d218f",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "7",
"dialect": "postgresql",
"tables": {
Expand Down Expand Up @@ -935,5 +933,7 @@
"schemas": {},
"tables": {},
"columns": {}
}
},
"id": "66ef599c-031d-47dc-803c-e3eec14be111",
"prevId": "00000000-0000-0000-0000-000000000000"
}
8 changes: 4 additions & 4 deletions templates/with-vercel-postgres/src/migrations/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import * as migration_20251107_183841_initial from './20251107_183841_initial'
import * as migration_20251125_185418_initial from './20251125_185418_initial'

export const migrations = [
{
up: migration_20251107_183841_initial.up,
down: migration_20251107_183841_initial.down,
name: '20251107_183841_initial',
up: migration_20251125_185418_initial.up,
down: migration_20251125_185418_initial.down,
name: '20251125_185418_initial',
},
]
1 change: 1 addition & 0 deletions templates/with-vercel-postgres/src/payload-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export interface Config {
db: {
defaultIDType: number;
};
fallbackLocale: null;
globals: {};
globalsSelect: {};
locale: null;
Expand Down
36 changes: 18 additions & 18 deletions templates/with-vercel-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"scripts": {
"build": "cross-env NODE_OPTIONS=--no-deprecation next build",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"ci": "payload migrate && pnpm build",
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
"dev:prod": "cross-env NODE_OPTIONS=--no-deprecation rm -rf .next && pnpm build && pnpm start",
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
Expand All @@ -19,20 +20,21 @@
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"test": "pnpm run test:int && pnpm run test:e2e",
"test:e2e": "cross-env NODE_OPTIONS=\"--no-deprecation --no-experimental-strip-types\" pnpm exec playwright test --config=playwright.config.ts",
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts",
"ci": "payload migrate && pnpm build"
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts"
},
"dependencies": {
"@payloadcms/admin-bar": "3.63.0",
"@payloadcms/live-preview-react": "3.63.0",
"@payloadcms/next": "3.63.0",
"@payloadcms/plugin-form-builder": "3.63.0",
"@payloadcms/plugin-nested-docs": "3.63.0",
"@payloadcms/plugin-redirects": "3.63.0",
"@payloadcms/plugin-search": "3.63.0",
"@payloadcms/plugin-seo": "3.63.0",
"@payloadcms/richtext-lexical": "3.63.0",
"@payloadcms/ui": "3.63.0",
"@payloadcms/admin-bar": "3.65.0",
"@payloadcms/db-vercel-postgres": "3.65.0",
"@payloadcms/live-preview-react": "3.65.0",
"@payloadcms/next": "3.65.0",
"@payloadcms/plugin-form-builder": "3.65.0",
"@payloadcms/plugin-nested-docs": "3.65.0",
"@payloadcms/plugin-redirects": "3.65.0",
"@payloadcms/plugin-search": "3.65.0",
"@payloadcms/plugin-seo": "3.65.0",
"@payloadcms/richtext-lexical": "3.65.0",
"@payloadcms/storage-vercel-blob": "3.65.0",
"@payloadcms/ui": "3.65.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
Expand All @@ -46,16 +48,14 @@
"lucide-react": "^0.378.0",
"next": "15.4.7",
"next-sitemap": "^4.2.3",
"payload": "3.63.0",
"payload": "3.65.0",
"prism-react-renderer": "^2.3.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "7.45.4",
"sharp": "0.34.2",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"@payloadcms/db-vercel-postgres": "3.63.0",
"@payloadcms/storage-vercel-blob": "3.63.0"
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
Expand All @@ -81,6 +81,7 @@
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.20.2 || >=20.9.0"
},
Expand All @@ -90,6 +91,5 @@
"esbuild",
"unrs-resolver"
]
},
"packageManager": "[email protected]"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{
"id": "6686d861-e460-451a-b85d-51479253bd5e",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "7",
"dialect": "postgresql",
"tables": {
Expand Down Expand Up @@ -9182,5 +9180,7 @@
"schemas": {},
"tables": {},
"columns": {}
}
},
"id": "8b0175bf-8764-42ad-8ed9-6577792eac65",
"prevId": "00000000-0000-0000-0000-000000000000"
}
8 changes: 4 additions & 4 deletions templates/with-vercel-website/src/migrations/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import * as migration_20251107_183848_initial from './20251107_183848_initial'
import * as migration_20251125_185437_initial from './20251125_185437_initial'

export const migrations = [
{
up: migration_20251107_183848_initial.up,
down: migration_20251107_183848_initial.down,
name: '20251107_183848_initial',
up: migration_20251125_185437_initial.up,
down: migration_20251125_185437_initial.down,
name: '20251125_185437_initial',
},
]
1 change: 1 addition & 0 deletions templates/with-vercel-website/src/payload-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export interface Config {
db: {
defaultIDType: number;
};
fallbackLocale: null;
globals: {
header: Header;
footer: Footer;
Expand Down
Loading