From aa4b4bf8ae20c41006c882f63174a4d797fe4dd8 Mon Sep 17 00:00:00 2001 From: Thomas Ballinger Date: Thu, 8 Dec 2022 12:43:56 -0800 Subject: [PATCH] Update dependencies for Convex demo (#43855) Resolves the issue described in https://github.com/microsoft/TypeScript/issues/51567 in the Convex demo by updating type definitions. ## Documentation / Examples - [x] Make sure the linting passes by running `pnpm build && pnpm lint` - [x] **The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)** - actually updated dependencies this time --- examples/convex/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/convex/package.json b/examples/convex/package.json index 198ab086bf90b3a..44d70ad5bd4b81f 100644 --- a/examples/convex/package.json +++ b/examples/convex/package.json @@ -16,9 +16,9 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@types/node": "~16.11.12", - "@types/react": "17.0.45", - "@types/react-dom": "17.0.17", + "@types/node": "^18.11.11", + "@types/react": "^18.0.26", + "@types/react-dom": "^18.0.9", "npm-run-all": "^4.1.5", "prettier": "^2.7.1", "typescript": "^4.7.3"