Skip to content

Commit d98f3aa

Browse files
committed
chore(deps): Update npm dependencies
1 parent e3caebc commit d98f3aa

File tree

10 files changed

+2340
-1894
lines changed

10 files changed

+2340
-1894
lines changed

examples/basic/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@payloadcms/richtext-lexical": "^3.21.0",
2121
"cross-env": "^7.0.3",
2222
"graphql": "^16.10.0",
23-
"next": "15.1.6",
23+
"next": "15.2.4",
2424
"next-auth": "5.0.0-beta.25",
2525
"payload": "^3.21.0",
2626
"payload-authjs": "workspace:*",
@@ -29,14 +29,14 @@
2929
"sharp": "0.33.5"
3030
},
3131
"devDependencies": {
32-
"@eslint/eslintrc": "^3.2.0",
33-
"@next/eslint-plugin-next": "^15.1.6",
34-
"@types/node": "^22.13.1",
35-
"@types/react": "19.0.8",
36-
"@types/react-dom": "19.0.3",
37-
"eslint": "^9.20.0",
38-
"eslint-config-next": "15.1.6",
39-
"eslint-plugin-react-hooks": "^5.1.0",
32+
"@eslint/eslintrc": "^3.3.1",
33+
"@next/eslint-plugin-next": "^15.2.4",
34+
"@types/node": "^22.13.13",
35+
"@types/react": "19.0.12",
36+
"@types/react-dom": "19.0.4",
37+
"eslint": "^9.23.0",
38+
"eslint-config-next": "15.2.4",
39+
"eslint-plugin-react-hooks": "^5.2.0",
4040
"typescript": "5.7.3"
4141
},
4242
"engines": {

examples/multiple-auth-collections/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@payloadcms/richtext-lexical": "^3.24.0",
2121
"cross-env": "^7.0.3",
2222
"graphql": "^16.10.0",
23-
"next": "15.1.7",
23+
"next": "15.2.4",
2424
"next-auth": "5.0.0-beta.25",
2525
"payload": "^3.24.0",
2626
"payload-authjs": "workspace:*",
@@ -29,14 +29,14 @@
2929
"sharp": "0.33.5"
3030
},
3131
"devDependencies": {
32-
"@eslint/eslintrc": "^3.2.0",
33-
"@next/eslint-plugin-next": "^15.1.6",
34-
"@types/node": "^22.13.5",
35-
"@types/react": "19.0.10",
32+
"@eslint/eslintrc": "^3.3.1",
33+
"@next/eslint-plugin-next": "^15.2.4",
34+
"@types/node": "^22.13.13",
35+
"@types/react": "19.0.12",
3636
"@types/react-dom": "19.0.4",
37-
"eslint": "^9.20.0",
38-
"eslint-config-next": "15.1.6",
39-
"eslint-plugin-react-hooks": "^5.1.0",
37+
"eslint": "^9.23.0",
38+
"eslint-config-next": "15.2.4",
39+
"eslint-plugin-react-hooks": "^5.2.0",
4040
"typescript": "5.7.3"
4141
},
4242
"engines": {

package.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,25 @@
88
"dev": "nx run dev:dev"
99
},
1010
"devDependencies": {
11-
"@nx/eslint": "20.4.5",
12-
"@nx/js": "20.4.5",
13-
"@nx/next": "20.4.5",
14-
"@nx/react": "20.4.5",
15-
"@payloadcms/eslint-config": "3.9.0",
16-
"eslint": "^9.20.1",
17-
"nx": "20.4.5",
18-
"prettier": "^3.5.1",
19-
"typescript": "^5.7.3"
11+
"@nx/eslint": "20.6.4",
12+
"@nx/js": "20.6.4",
13+
"@nx/next": "20.6.4",
14+
"@nx/react": "20.6.4",
15+
"@payloadcms/eslint-config": "3.28.0",
16+
"eslint": "^9.23.0",
17+
"nx": "20.6.4",
18+
"prettier": "^3.5.3",
19+
"typescript": "^5.8.2"
2020
},
2121
"nx": {},
2222
"workspaces": [
2323
"packages/*",
2424
"examples/*"
2525
],
26-
"packageManager": "pnpm@10.4.1",
26+
"packageManager": "pnpm@10.6.5",
2727
"pnpm": {
2828
"onlyBuiltDependencies": [
29+
"@parcel/watcher",
2930
"@swc/core",
3031
"esbuild",
3132
"nx",

packages/dev/.prettierrc.js renamed to packages/dev/.prettierrc.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import baseConfig from "../../.prettierrc.json" assert { type: "json" };
1+
const baseConfig = require("../../.prettierrc.json");
22

33
/**
44
* @type {import("prettier").Config}
@@ -9,4 +9,4 @@ const config = {
99
tailwindStylesheet: "./src/app/(app)/globals.css",
1010
};
1111

12-
export default config;
12+
module.exports = config;

packages/dev/next.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ const nextConfig: NextConfig = {
88
},
99
};
1010

11-
export default withNx(withPayload(nextConfig));
11+
export default withNx(
12+
withPayload(nextConfig, {
13+
devBundleServerPackages: false,
14+
}),
15+
);

packages/dev/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,36 @@
55
"private": true,
66
"type": "module",
77
"scripts": {
8-
"start:dev": "next dev -p 5000",
8+
"dev:turbo": "next dev -p 5000 --turbopack",
99
"payload": "payload",
1010
"generate:types": "payload generate:types",
1111
"generate:schema": "payload-graphql generate:schema",
1212
"generate:importmap": "payload generate:importmap"
1313
},
1414
"dependencies": {
15-
"@payloadcms/db-postgres": "3.24.0",
16-
"@payloadcms/next": "3.24.0",
17-
"@payloadcms/translations": "3.24.0",
18-
"@payloadcms/ui": "3.24.0",
19-
"@tailwindcss/postcss": "^4.0.7",
15+
"@payloadcms/db-postgres": "3.31.0",
16+
"@payloadcms/next": "3.31.0",
17+
"@payloadcms/translations": "3.31.0",
18+
"@payloadcms/ui": "3.31.0",
19+
"@tailwindcss/postcss": "^4.0.16",
2020
"clsx": "^2.1.1",
2121
"jsonwebtoken": "^9.0.2",
22-
"next": "15.1.7",
22+
"next": "15.2.4",
2323
"next-auth": "5.0.0-beta.25",
2424
"nodemailer": "^6.10.0",
25-
"payload": "3.24.0",
25+
"payload": "3.31.0",
2626
"pino-pretty": "^13.0.0",
2727
"postcss": "^8.5.3",
2828
"prettier-plugin-tailwindcss": "^0.6.11",
2929
"react": "19.0.0",
3030
"react-dom": "19.0.0",
3131
"sharp": "^0.33.5",
32-
"tailwindcss": "^4.0.7"
32+
"tailwindcss": "^4.0.16"
3333
},
3434
"devDependencies": {
35-
"@types/jsonwebtoken": "^9.0.8",
36-
"@types/react": "19.0.10",
35+
"@types/jsonwebtoken": "^9.0.9",
36+
"@types/react": "19.0.12",
3737
"dotenv": "^16.4.7",
38-
"typescript": "^5.7.3"
38+
"typescript": "^5.8.2"
3939
}
4040
}

packages/dev/src/app/(payload)/admin/importMap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { AccountRowLabel as AccountRowLabel_06d0cb594d8f6ba2ac35015f930c882e } from 'payload-authjs/components'
22
import { SignInWithAuthjsButton as SignInWithAuthjsButton_06d0cb594d8f6ba2ac35015f930c882e } from 'payload-authjs/components'
3-
import { default as default_2c1e1c35da30a80d88551f9fcc61be66 } from 'src/payload/components/Greeting'
3+
import { default as default_2c1e1c35da30a80d88551f9fcc61be66 } from '../../../payload/components/Greeting'
44

55
export const importMap = {
66
"payload-authjs/components#AccountRowLabel": AccountRowLabel_06d0cb594d8f6ba2ac35015f930c882e,

packages/dev/src/payload-types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ export type SupportedTimezones =
5454
| 'Asia/Singapore'
5555
| 'Asia/Tokyo'
5656
| 'Asia/Seoul'
57+
| 'Australia/Brisbane'
5758
| 'Australia/Sydney'
5859
| 'Pacific/Guam'
5960
| 'Pacific/Noumea'

packages/payload-authjs/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@
4747
],
4848
"scripts": {},
4949
"devDependencies": {
50-
"@payloadcms/next": "3.24.0",
51-
"@payloadcms/ui": "3.24.0",
52-
"@types/react": "19.0.10",
53-
"next": "15.1.7",
50+
"@payloadcms/next": "3.31.0",
51+
"@payloadcms/ui": "3.31.0",
52+
"@types/react": "19.0.12",
53+
"next": "15.2.4",
5454
"next-auth": "5.0.0-beta.25",
55-
"payload": "3.24.0",
55+
"payload": "3.31.0",
5656
"react": "19.0.0",
5757
"react-dom": "19.0.0",
58-
"typescript": "^5.7.3"
58+
"typescript": "^5.8.2"
5959
},
6060
"peerDependencies": {
6161
"@payloadcms/next": "^3.1.1",

0 commit comments

Comments
 (0)