Skip to content

Commit 8dfcd1d

Browse files
committed
update packages
1 parent c080cae commit 8dfcd1d

File tree

11 files changed

+687
-778
lines changed

11 files changed

+687
-778
lines changed

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node-linker=hoisted
2+
link-workspace-packages=true

apps/expo/package.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,29 @@
1515
"typecheck": "tsc --noEmit"
1616
},
1717
"dependencies": {
18-
"@expo/metro-config": "^0.18.10",
19-
"@shopify/flash-list": "^1.7.0",
18+
"@bacons/text-decoder": "^0.0.0",
19+
"@expo/metro-config": "^0.18.11",
20+
"@shopify/flash-list": "^1.7.1",
2021
"@tanstack/react-query": "catalog:",
2122
"@trpc/client": "catalog:",
2223
"@trpc/react-query": "catalog:",
2324
"@trpc/server": "catalog:",
24-
"expo": "^51.0.24",
25+
"expo": "^51.0.26",
2526
"expo-constants": "^16.0.2",
2627
"expo-linking": "^6.3.1",
27-
"expo-router": "^3.5.20",
28+
"expo-router": "^3.5.21",
2829
"expo-splash-screen": "^0.27.5",
2930
"expo-status-bar": "^1.12.1",
3031
"nativewind": "^4.0.36",
3132
"react": "^18.3.1",
3233
"react-dom": "^18.3.1",
3334
"react-hook-form": "^7.52.2",
34-
"react-native": "^0.74.4",
35+
"react-native": "^0.74.5",
3536
"react-native-css-interop": "^0.0.34",
3637
"react-native-gesture-handler": "^2.18.1",
37-
"react-native-reanimated": "^3.14.0",
38+
"react-native-reanimated": "^3.15.0",
3839
"react-native-safe-area-context": "^4.10.8",
39-
"react-native-screens": "^3.33.0",
40+
"react-native-screens": "^3.34.0",
4041
"superjson": "^2.2.1"
4142
},
4243
"devDependencies": {

apps/expo/src/app/_layout.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1+
import "@bacons/text-decoder/install";
2+
13
import { Stack } from "expo-router";
24
import { StatusBar } from "expo-status-bar";
5+
import { useColorScheme } from "nativewind";
36

47
import { TRPCProvider } from "@/trpc/react";
58

69
import "./globals.css";
710

8-
import { useColorScheme } from "nativewind";
9-
1011
// This is the main layout of the app
1112
// It wraps your pages with the providers they need
1213
const RootLayout = () => {

apps/nextjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@mdx-js/react": "^3.0.1",
2424
"@next/mdx": "^14.2.5",
2525
"@stripe/react-stripe-js": "^2.7.3",
26-
"@stripe/stripe-js": "^4.1.0",
26+
"@stripe/stripe-js": "^4.2.0",
2727
"@tanstack/react-query": "catalog:",
2828
"@trpc/client": "catalog:",
2929
"@trpc/react-query": "catalog:",

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
},
3030
"devDependencies": {
3131
"@kyh/prettier-config": "catalog:",
32-
"@turbo/gen": "^2.0.11",
32+
"@turbo/gen": "^2.0.12",
3333
"dotenv-cli": "^7.4.2",
3434
"prettier": "catalog:",
35-
"tsx": "^4.16.5",
36-
"turbo": "^2.0.11",
35+
"tsx": "^4.17.0",
36+
"turbo": "^2.0.12",
3737
"typescript": "catalog:"
3838
},
3939
"prettier": "@kyh/prettier-config"

packages/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"dependencies": {
1717
"@init/db": "workspace:latest",
1818
"@trpc/server": "catalog:",
19-
"stripe": "^16.6.0",
19+
"stripe": "^16.7.0",
2020
"superjson": "^2.2.1",
2121
"zod": "^3.23.8",
2222
"zod-form-data": "^2.0.2"

packages/db/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
},
2525
"dependencies": {
2626
"@supabase/ssr": "^0.4.0",
27-
"@supabase/supabase-js": "^2.45.0",
27+
"@supabase/supabase-js": "^2.45.1",
2828
"next": "^14.2.5",
2929
"react": "^18.3.1",
3030
"zod": "^3.23.8"

packages/tailwind/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
"@kyh/eslint-config": "catalog:",
1717
"@kyh/prettier-config": "catalog:",
1818
"@kyh/tsconfig": "catalog:",
19+
"@tailwindcss/typography": "^0.5.14",
1920
"eslint": "catalog:",
21+
"postcss": "^8.4.41",
2022
"prettier": "catalog:",
21-
"typescript": "catalog:",
22-
"@tailwindcss/typography": "^0.5.13",
23-
"postcss": "^8.4.40",
2423
"tailwindcss": "catalog:",
25-
"tailwindcss-animate": "^1.0.7"
24+
"tailwindcss-animate": "^1.0.7",
25+
"typescript": "catalog:"
2626
},
2727
"eslintConfig": {
2828
"root": true,

packages/ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"next-themes": "^0.3.0",
3838
"react-hook-form": "^7.52.2",
3939
"sonner": "^1.5.0",
40-
"tailwind-merge": "^2.4.0",
40+
"tailwind-merge": "^2.5.0",
4141
"tailwindcss-animate": "^1.0.7"
4242
},
4343
"devDependencies": {

0 commit comments

Comments
 (0)