Skip to content

Commit d269d92

Browse files
committed
chore(deps): Update npm dependencies
1 parent 89ce1a7 commit d269d92

File tree

5 files changed

+3250
-2619
lines changed

5 files changed

+3250
-2619
lines changed

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88
"dev": "nx run dev:dev"
99
},
1010
"devDependencies": {
11-
"@nx/eslint": "20.4.2",
12-
"@nx/js": "20.4.2",
13-
"@nx/next": "20.4.2",
14-
"@nx/react": "20.4.2",
11+
"@nx/eslint": "20.4.5",
12+
"@nx/js": "20.4.5",
13+
"@nx/next": "20.4.5",
14+
"@nx/react": "20.4.5",
1515
"@payloadcms/eslint-config": "3.9.0",
16-
"eslint": "^9.20.0",
17-
"nx": "20.4.2",
18-
"prettier": "^3.5.0",
16+
"eslint": "^9.20.1",
17+
"nx": "20.4.5",
18+
"prettier": "^3.5.1",
1919
"typescript": "^5.7.3"
2020
},
2121
"nx": {},
2222
"workspaces": [
2323
"packages/*",
2424
"examples/*"
2525
],
26-
"packageManager": "pnpm@10.2.0",
26+
"packageManager": "pnpm@10.4.1",
2727
"pnpm": {
2828
"onlyBuiltDependencies": [
2929
"@swc/core",

packages/dev/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,28 @@
1212
"generate:importmap": "payload generate:importmap"
1313
},
1414
"dependencies": {
15-
"@payloadcms/db-postgres": "3.21.0",
16-
"@payloadcms/next": "3.21.0",
17-
"@payloadcms/translations": "^3.21.0",
18-
"@payloadcms/ui": "3.21.0",
19-
"@tailwindcss/postcss": "^4.0.5",
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",
2020
"clsx": "^2.1.1",
2121
"jsonwebtoken": "^9.0.2",
22-
"next": "15.1.6",
22+
"next": "15.1.7",
2323
"next-auth": "5.0.0-beta.25",
2424
"nodemailer": "^6.10.0",
25-
"payload": "3.21.0",
25+
"payload": "3.24.0",
2626
"pino-pretty": "^13.0.0",
27-
"postcss": "^8.5.1",
27+
"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.5"
32+
"tailwindcss": "^4.0.7"
3333
},
3434
"devDependencies": {
3535
"@types/jsonwebtoken": "^9.0.8",
36-
"@types/react": "19.0.8",
36+
"@types/react": "19.0.10",
3737
"dotenv": "^16.4.7",
3838
"typescript": "^5.7.3"
3939
}

packages/dev/src/payload-types.ts

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,60 @@
66
* and re-run `payload generate:types` to regenerate this file.
77
*/
88

9+
/**
10+
* Supported timezones in IANA format.
11+
*
12+
* This interface was referenced by `Config`'s JSON-Schema
13+
* via the `definition` "supportedTimezones".
14+
*/
15+
export type SupportedTimezones =
16+
| 'Pacific/Midway'
17+
| 'Pacific/Niue'
18+
| 'Pacific/Honolulu'
19+
| 'Pacific/Rarotonga'
20+
| 'America/Anchorage'
21+
| 'Pacific/Gambier'
22+
| 'America/Los_Angeles'
23+
| 'America/Tijuana'
24+
| 'America/Denver'
25+
| 'America/Phoenix'
26+
| 'America/Chicago'
27+
| 'America/Guatemala'
28+
| 'America/New_York'
29+
| 'America/Bogota'
30+
| 'America/Caracas'
31+
| 'America/Santiago'
32+
| 'America/Buenos_Aires'
33+
| 'America/Sao_Paulo'
34+
| 'Atlantic/South_Georgia'
35+
| 'Atlantic/Azores'
36+
| 'Atlantic/Cape_Verde'
37+
| 'Europe/London'
38+
| 'Europe/Berlin'
39+
| 'Africa/Lagos'
40+
| 'Europe/Athens'
41+
| 'Africa/Cairo'
42+
| 'Europe/Moscow'
43+
| 'Asia/Riyadh'
44+
| 'Asia/Dubai'
45+
| 'Asia/Baku'
46+
| 'Asia/Karachi'
47+
| 'Asia/Tashkent'
48+
| 'Asia/Calcutta'
49+
| 'Asia/Dhaka'
50+
| 'Asia/Almaty'
51+
| 'Asia/Jakarta'
52+
| 'Asia/Bangkok'
53+
| 'Asia/Shanghai'
54+
| 'Asia/Singapore'
55+
| 'Asia/Tokyo'
56+
| 'Asia/Seoul'
57+
| 'Australia/Sydney'
58+
| 'Pacific/Guam'
59+
| 'Pacific/Noumea'
60+
| 'Pacific/Auckland'
61+
| 'Pacific/Fiji';
62+
963
export interface Config {
1064
auth: {
1165
users: UserAuthOperations;

packages/payload-authjs/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,13 @@
4646
"next-auth"
4747
],
4848
"scripts": {},
49-
"dependencies": {},
5049
"devDependencies": {
51-
"@types/react": "19.0.8",
52-
"next": "15.1.6",
50+
"@payloadcms/next": "3.24.0",
51+
"@payloadcms/ui": "3.24.0",
52+
"@types/react": "19.0.10",
53+
"next": "15.1.7",
5354
"next-auth": "5.0.0-beta.25",
54-
"payload": "3.21.0",
55+
"payload": "3.24.0",
5556
"react": "19.0.0",
5657
"react-dom": "19.0.0",
5758
"typescript": "^5.7.3"

0 commit comments

Comments
 (0)