**BREAKING CHANGE:** This bumps the **minimum required Next.js** version from 15.0.0 to 15.2.3. This update is necessary due to a critical security vulnerability found in earlier Next.js versions, which requires an exception to our standard semantic versioning process. Additionally, this bumps all templates to the latest Next.js and Payload versions.
48 lines
1.5 KiB
JSON
48 lines
1.5 KiB
JSON
{
|
|
"name": "payload-example-email",
|
|
"version": "1.0.0",
|
|
"description": "Payload Email integration example.",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"_dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
|
|
"build": "cross-env NODE_OPTIONS=--no-deprecation next build",
|
|
"dev": "cross-env PAYLOAD_SEED=true PAYLOAD_DROP_DATABASE=true NODE_OPTIONS=--no-deprecation next dev",
|
|
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
|
|
"generate:schema": "payload-graphql generate:schema",
|
|
"generate:types": "payload generate:types",
|
|
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
|
|
"start": "cross-env NODE_OPTIONS=--no-deprecation next start"
|
|
},
|
|
"dependencies": {
|
|
"@payloadcms/db-mongodb": "latest",
|
|
"@payloadcms/email-nodemailer": "latest",
|
|
"@payloadcms/next": "latest",
|
|
"@payloadcms/richtext-lexical": "latest",
|
|
"@payloadcms/ui": "latest",
|
|
"cross-env": "^7.0.3",
|
|
"dotenv": "^8.2.0",
|
|
"ejs": "3.1.10",
|
|
"graphql": "^16.9.0",
|
|
"juice": "11.0.0",
|
|
"next": "^15.2.3",
|
|
"payload": "latest",
|
|
"react": "19.0.0",
|
|
"react-dom": "19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@payloadcms/graphql": "latest",
|
|
"@swc/core": "^1.6.13",
|
|
"@types/ejs": "^3.1.5",
|
|
"@types/react": "19.0.1",
|
|
"@types/react-dom": "19.0.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-next": "^15.0.0",
|
|
"tsx": "^4.16.2",
|
|
"typescript": "5.5.2"
|
|
},
|
|
"engines": {
|
|
"node": "^18.20.2 || >=20.9.0"
|
|
}
|
|
}
|