Skip to content

Commit 76458a2

Browse files
committed
chore: update React version in package files
- Removed specific version constraints for "react" and "react-dom" in multiple package.json and lock files, replacing them with a more flexible version range (^19). - Ensured consistency across all applications and libraries by aligning React dependencies.
1 parent 6651f86 commit 76458a2

File tree

7 files changed

+21
-34
lines changed

7 files changed

+21
-34
lines changed

apps/app/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
"posthog-js": "^1.236.6",
8585
"posthog-node": "^4.14.0",
8686
"puppeteer-core": "^24.7.2",
87-
"react": "^19.1.0",
8887
"react-dom": "^19.1.0",
8988
"react-email": "^4.0.15",
9089
"react-hotkeys-hook": "^4.6.2",
@@ -129,8 +128,8 @@
129128
"./src/lib/encryption": "./src/lib/encryption.ts"
130129
},
131130
"peerDependencies": {
132-
"react": "^19.1.0",
133-
"react-dom": "^19.1.0",
131+
"react": "^19",
132+
"react-dom": "^19",
134133
"react-hook-form": "^7.56.3"
135134
}
136135
}

apps/framework-editor/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
"lucide-react": "^0.454.0",
5757
"next": "^15.4.0-canary.60",
5858
"next-themes": "^0.4.4",
59-
"react": "^19.1.0",
6059
"react-datasheet-grid": "^4.11.5",
6160
"react-day-picker": "8.10.1",
6261
"react-dom": "^19.1.0",

apps/portal/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
"@t3-oss/env-nextjs": "^0.12.0",
1515
"better-auth": "^1.2.4",
1616
"next": "^15.4.0-canary.60",
17-
"react": "^19.1.0",
18-
"react-dom": "^19.1.0",
1917
"react-email": "^4.0.15",
2018
"react-otp-input": "^3.1.1"
2119
},
@@ -29,5 +27,9 @@
2927
"postcss": "^8.5.2",
3028
"tailwindcss": "^3.4.17",
3129
"typescript": "^5.8.3"
30+
},
31+
"peerDependencies": {
32+
"react": "^19",
33+
"react-dom": "^19"
3234
}
3335
}

apps/trust/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@
5454
"lucide-react": "^0.454.0",
5555
"next": "^15.4.0-canary.60",
5656
"next-themes": "^0.4.4",
57-
"react": "^19.1.0",
5857
"react-day-picker": "8.10.1",
59-
"react-dom": "^19.1.0",
6058
"react-email": "^4.0.15",
6159
"react-resizable-panels": "^2.1.7",
6260
"recharts": "2.15.0",

bun.lock

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@
124124
"posthog-js": "^1.236.6",
125125
"posthog-node": "^4.14.0",
126126
"puppeteer-core": "^24.7.2",
127-
"react": "^19.1.0",
128127
"react-dom": "^19.1.0",
129128
"react-email": "^4.0.15",
130129
"react-hotkeys-hook": "^4.6.2",
@@ -157,8 +156,8 @@
157156
"typescript": "^5.8.3",
158157
},
159158
"peerDependencies": {
160-
"react": "^19.1.0",
161-
"react-dom": "^19.1.0",
159+
"react": "^19",
160+
"react-dom": "^19",
162161
"react-hook-form": "^7.56.3",
163162
},
164163
},
@@ -212,7 +211,6 @@
212211
"lucide-react": "^0.454.0",
213212
"next": "^15.4.0-canary.60",
214213
"next-themes": "^0.4.4",
215-
"react": "^19.1.0",
216214
"react-datasheet-grid": "^4.11.5",
217215
"react-day-picker": "8.10.1",
218216
"react-dom": "^19.1.0",
@@ -249,8 +247,6 @@
249247
"@t3-oss/env-nextjs": "^0.12.0",
250248
"better-auth": "^1.2.4",
251249
"next": "^15.4.0-canary.60",
252-
"react": "^19.1.0",
253-
"react-dom": "^19.1.0",
254250
"react-email": "^4.0.15",
255251
"react-otp-input": "^3.1.1",
256252
},
@@ -265,6 +261,10 @@
265261
"tailwindcss": "^3.4.17",
266262
"typescript": "^5.8.3",
267263
},
264+
"peerDependencies": {
265+
"react": "^19",
266+
"react-dom": "^19",
267+
},
268268
},
269269
"apps/trust": {
270270
"name": "@comp/trust",
@@ -314,9 +314,7 @@
314314
"lucide-react": "^0.454.0",
315315
"next": "^15.4.0-canary.60",
316316
"next-themes": "^0.4.4",
317-
"react": "^19.1.0",
318317
"react-day-picker": "8.10.1",
319-
"react-dom": "^19.1.0",
320318
"react-email": "^4.0.15",
321319
"react-resizable-panels": "^2.1.7",
322320
"recharts": "2.15.0",
@@ -373,14 +371,14 @@
373371
"@react-email/tailwind": "1.0.4",
374372
"date-fns": "^4.1.0",
375373
"next": "^15.3.3",
376-
"react": "^19.1.0",
377374
"react-dom": "^19.1.0",
378375
"react-email": "^4.0.15",
379376
"responsive-react-email": "^0.0.5",
380377
},
381378
"devDependencies": {
382379
"@types/react": "^19.1.3",
383380
"@types/react-dom": "^19.1.3",
381+
"react": "^19",
384382
"tsup": "^8.4.0",
385383
"typescript": "^5.8.3",
386384
},
@@ -4559,6 +4557,8 @@
45594557

45604558
"@comp/trust/next": ["[email protected]", "", { "dependencies": { "@next/env": "15.4.0-canary.60", "@swc/helpers": "0.5.15", "caniuse-lite": "^1.0.30001579", "postcss": "8.4.31", "styled-jsx": "5.1.6" }, "optionalDependencies": { "@next/swc-darwin-arm64": "15.4.0-canary.60", "@next/swc-darwin-x64": "15.4.0-canary.60", "@next/swc-linux-arm64-gnu": "15.4.0-canary.60", "@next/swc-linux-arm64-musl": "15.4.0-canary.60", "@next/swc-linux-x64-gnu": "15.4.0-canary.60", "@next/swc-linux-x64-musl": "15.4.0-canary.60", "@next/swc-win32-arm64-msvc": "15.4.0-canary.60", "@next/swc-win32-x64-msvc": "15.4.0-canary.60", "sharp": "^0.34.1" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", "@playwright/test": "^1.41.2", "babel-plugin-react-compiler": "*", "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "sass": "^1.3.0" }, "optionalPeers": ["@opentelemetry/api", "@playwright/test", "babel-plugin-react-compiler", "sass"], "bin": { "next": "dist/bin/next" } }, "sha512-P5bsXSXVuoEBTh7abB88mNGzVFLdZuxbJLEyUOYaBNzgygpyQsGrLdTvoXQ8521Hp++wLifQp4QPdzWy3pqMGQ=="],
45614559

4560+
"@comp/ui/@radix-ui/react-slot": ["@radix-ui/[email protected]", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
4561+
45624562
"@comp/ui/cmdk": ["[email protected]", "", { "dependencies": { "@radix-ui/react-dialog": "1.0.0" }, "peerDependencies": { "react": "^18.0.0", "react-dom": "^18.0.0" } }, "sha512-U6//9lQ6JvT47+6OF6Gi8BvkxYQ8SCRRSKIJkthIMsFsLZRG0cKvTtuTaefyIKMQb8rvvXy0wGdpTNq/jPtm+g=="],
45634563

45644564
"@comp/ui/lucide-react": ["[email protected]", "", { "peerDependencies": { "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc" } }, "sha512-SZ//hQmvi+kDKrNepArVkYK7/jfeZ5uFNEnYmd45RKZcbGD78KLnrcNXmgeg6m+xNHFvTG+CblszXCy4n6DN4w=="],
@@ -5763,6 +5763,8 @@
57635763

57645764
"@comp/trust/next/sharp": ["[email protected]", "", { "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.4", "semver": "^7.7.2" }, "optionalDependencies": { "@img/sharp-darwin-arm64": "0.34.2", "@img/sharp-darwin-x64": "0.34.2", "@img/sharp-libvips-darwin-arm64": "1.1.0", "@img/sharp-libvips-darwin-x64": "1.1.0", "@img/sharp-libvips-linux-arm": "1.1.0", "@img/sharp-libvips-linux-arm64": "1.1.0", "@img/sharp-libvips-linux-ppc64": "1.1.0", "@img/sharp-libvips-linux-s390x": "1.1.0", "@img/sharp-libvips-linux-x64": "1.1.0", "@img/sharp-libvips-linuxmusl-arm64": "1.1.0", "@img/sharp-libvips-linuxmusl-x64": "1.1.0", "@img/sharp-linux-arm": "0.34.2", "@img/sharp-linux-arm64": "0.34.2", "@img/sharp-linux-s390x": "0.34.2", "@img/sharp-linux-x64": "0.34.2", "@img/sharp-linuxmusl-arm64": "0.34.2", "@img/sharp-linuxmusl-x64": "0.34.2", "@img/sharp-wasm32": "0.34.2", "@img/sharp-win32-arm64": "0.34.2", "@img/sharp-win32-ia32": "0.34.2", "@img/sharp-win32-x64": "0.34.2" } }, "sha512-lszvBmB9QURERtyKT2bNmsgxXK0ShJrL/fvqlonCo7e6xBF8nT8xU6pW+PMIbLsz0RxQk3rgH9kd8UmvOzlMJg=="],
57655765

5766+
"@comp/ui/@radix-ui/react-slot/@radix-ui/react-compose-refs": ["@radix-ui/[email protected]", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg=="],
5767+
57665768
"@comp/ui/cmdk/@radix-ui/react-dialog": ["@radix-ui/[email protected]", "", { "dependencies": { "@babel/runtime": "^7.13.10", "@radix-ui/primitive": "1.0.0", "@radix-ui/react-compose-refs": "1.0.0", "@radix-ui/react-context": "1.0.0", "@radix-ui/react-dismissable-layer": "1.0.0", "@radix-ui/react-focus-guards": "1.0.0", "@radix-ui/react-focus-scope": "1.0.0", "@radix-ui/react-id": "1.0.0", "@radix-ui/react-portal": "1.0.0", "@radix-ui/react-presence": "1.0.0", "@radix-ui/react-primitive": "1.0.0", "@radix-ui/react-slot": "1.0.0", "@radix-ui/react-use-controllable-state": "1.0.0", "aria-hidden": "^1.1.1", "react-remove-scroll": "2.5.4" }, "peerDependencies": { "react": "^16.8 || ^17.0 || ^18.0", "react-dom": "^16.8 || ^17.0 || ^18.0" } }, "sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q=="],
57675769

57685770
"@isaacs/cliui/string-width/emoji-regex": ["[email protected]", "", {}, "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="],

packages/email/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
"@react-email/tailwind": "1.0.4",
2525
"date-fns": "^4.1.0",
2626
"next": "^15.3.3",
27-
"react": "^19.1.0",
2827
"react-dom": "^19.1.0",
2928
"react-email": "^4.0.15",
3029
"responsive-react-email": "^0.0.5"
@@ -33,6 +32,7 @@
3332
"typescript": "^5.8.3",
3433
"@types/react": "^19.1.3",
3534
"@types/react-dom": "^19.1.3",
35+
"react": "^19",
3636
"tsup": "^8.4.0"
3737
}
3838
}

yarn.lock

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1640,7 +1640,6 @@
16401640
resolved "workspace:apps/app"
16411641
devDependencies:
16421642
"@comp/db" "workspace:*"
1643-
devDependencies:
16441643
"@trigger.dev/build" "3.3.17"
16451644
"@types/node" "^22.15.2"
16461645
"@types/react" "19.1.2"
@@ -1660,10 +1659,8 @@
16601659
"@browserbasehq/sdk" "^2.5.0"
16611660
"@calcom/atoms" "^1.0.102-framer"
16621661
"@calcom/embed-react" "^1.5.3"
1663-
dependencies:
16641662
"@comp/db" "workspace:*"
16651663
"@comp/notifications" "workspace:*"
1666-
dependencies:
16671664
"@date-fns/tz" "^1.2.0"
16681665
"@dnd-kit/core" "^6.3.1"
16691666
"@dnd-kit/modifiers" "^9.0.0"
@@ -1721,7 +1718,6 @@
17211718
posthog-js "^1.236.6"
17221719
posthog-node "^4.14.0"
17231720
puppeteer-core "^24.7.2"
1724-
react "^19.1.0"
17251721
react-dom "^19.1.0"
17261722
react-email "^4.0.15"
17271723
react-hotkeys-hook "^4.6.2"
@@ -1747,7 +1743,6 @@
17471743
resolved "workspace:packages/db"
17481744
devDependencies:
17491745
"@comp/tsconfig" "workspace:*"
1750-
devDependencies:
17511746
typescript "^5.8.3"
17521747
dependencies:
17531748
"@prisma/client" "6.6.0"
@@ -1760,18 +1755,17 @@
17601755
devDependencies:
17611756
"@types/react" "^19.1.3"
17621757
"@types/react-dom" "^19.1.3"
1758+
react "^19"
17631759
tsup "^8.4.0"
17641760
typescript "^5.8.3"
17651761
dependencies:
17661762
"@comp/ui" "workspace:*"
17671763
"@comp/utils" "workspace:*"
1768-
dependencies:
17691764
"@react-email/components" "0.0.36"
17701765
"@react-email/render" "^1.1.2"
17711766
"@react-email/tailwind" "1.0.4"
17721767
date-fns "^4.1.0"
17731768
next "^15.3.3"
1774-
react "^19.1.0"
17751769
react-dom "^19.1.0"
17761770
react-email "^4.0.15"
17771771
responsive-react-email "^0.0.5"
@@ -1836,7 +1830,6 @@
18361830
lucide-react "^0.454.0"
18371831
next "^15.4.0-canary.60"
18381832
next-themes "^0.4.4"
1839-
react "^19.1.0"
18401833
react-datasheet-grid "^4.11.5"
18411834
react-day-picker "8.10.1"
18421835
react-dom "^19.1.0"
@@ -1894,7 +1887,6 @@
18941887
devDependencies:
18951888
"@comp/db" "workspace:*"
18961889
"@comp/ui" "workspace:*"
1897-
devDependencies:
18981890
"@types/node" "^22.13.2"
18991891
"@types/react" "^19.1.2"
19001892
"@types/react-dom" "^19.1.1"
@@ -1908,8 +1900,6 @@
19081900
"@t3-oss/env-nextjs" "^0.12.0"
19091901
better-auth "^1.2.4"
19101902
next "^15.4.0-canary.60"
1911-
react "^19.1.0"
1912-
react-dom "^19.1.0"
19131903
react-email "^4.0.15"
19141904
react-otp-input "^3.1.1"
19151905

@@ -1927,7 +1917,6 @@
19271917
dependencies:
19281918
"@comp/db" "workspace:*"
19291919
"@comp/ui" "workspace:*"
1930-
dependencies:
19311920
"@hookform/resolvers" "^3.9.1"
19321921
"@radix-ui/react-accordion" "1.2.2"
19331922
"@radix-ui/react-alert-dialog" "1.1.4"
@@ -1971,9 +1960,7 @@
19711960
lucide-react "^0.454.0"
19721961
next "^15.4.0-canary.60"
19731962
next-themes "^0.4.4"
1974-
react "^19.1.0"
19751963
react-day-picker "8.10.1"
1976-
react-dom "^19.1.0"
19771964
react-email "^4.0.15"
19781965
react-resizable-panels "^2.1.7"
19791966
recharts "2.15.0"
@@ -4771,7 +4758,7 @@
47714758
"@babel/runtime" "^7.13.10"
47724759
"@radix-ui/react-compose-refs" "1.0.0"
47734760

4774-
"@radix-ui/[email protected]", "@radix-ui/react-slot@^1.0.2", "@radix-ui/react-slot@^1.1.0", "@radix-ui/react-slot@^1.1.1":
4761+
"@radix-ui/[email protected]", "@radix-ui/react-slot@^1.0.2", "@radix-ui/react-slot@^1.1.1":
47754762
version "1.1.1"
47764763
resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.1.tgz"
47774764
integrity sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==
@@ -4785,7 +4772,7 @@
47854772
dependencies:
47864773
"@radix-ui/react-compose-refs" "1.1.2"
47874774

4788-
"@radix-ui/[email protected]":
4775+
"@radix-ui/[email protected]", "@radix-ui/react-slot@^1.1.0":
47894776
version "1.2.3"
47904777
resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz"
47914778
integrity sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==

0 commit comments

Comments
 (0)