diff --git a/.github/tools/package.json b/.github/tools/package.json index 56890b069d53..5ab7a2fafff9 100644 --- a/.github/tools/package.json +++ b/.github/tools/package.json @@ -12,7 +12,7 @@ }, "devDependencies": { "inline-markdown": "0.1.6", - "prettier": "3.1.0", + "prettier": "3.1.1", "prettier-check": "2.0.0", "watch": "1.0.2" } diff --git a/README.md b/README.md index 6094a9d13a94..f4521282df1b 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,8 @@ The projects in the [`deployment-platforms`](./deployment-platforms) directory s ## Real-world & production-ready example projects with Prisma +- [Papermark](https://github.com/mfts/papermark/): An open-source DocSend alternative with built-in analytics and custom domains +- [Hoppscotch](https://github.com/hoppscotch/hoppscotch): An open-source API development ecosystem - [FeastQR](https://github.com/jakubczarnowski/FeastQR): An open-source SaaS online menu system for restaurants - [Formbricks](https://github.com/formbricks/formbricks): An open-source survey and experience management tool - [OpenformStack](https://github.com/naveennaidu/OpenformStack): An open-source form backend that allows you to collect form submissions without writing any backend code @@ -129,13 +131,10 @@ The projects in the [`deployment-platforms`](./deployment-platforms) directory s - [dub](https://dub.sh/): An open-source link shortener with built-in analytics and free custom domains - [Umami](https://github.com/mikecao/umami): A simple, fast, privacy-focused alternative to Google Analytics - [Rallly](https://github.com/lukevella/rallly): A self-hostable doodle poll alternative (based on Next.js, tRPC, and TailwindCSS) -- [snoopForms](https://github.com/snoopForms/snoopforms?ref=reactjsexample.com): An open-source alternative to Typeform (easy online surveys) - [Typebot](https://github.com/baptisteArno/typebot.io): A conversational form builder that you can self-host - [Cal.com](https://github.com/calcom/cal.com): An open-source alternative to Calendly (calender-based event scheduling service) - [Beam](https://github.com/planetscale/beam): A simple tool that allows members to write posts to share across your organization (based on Next.js) - [`ironfish-api`](https://github.com/iron-fish/ironfish-api): Public API for Iron Fish (A novel cryptocurrency focused on privacy and accessibility) -- [Indie Stack](https://github.com/remix-run/indie-stack): Remix Stack for deploying to Fly with SQLite, authentication, testing, linting, formatting -- [Blues Stack](https://github.com/remix-run/blues-stack): Remix Stack for deploying to Fly with PostgreSQL, authentication, testing, linting, formatting - [Tottem](https://github.com/poulainv/tottem): Fullstack app for "social library management" (based on Next.js) - [Dundring](https://github.com/sivertschou/dundring): An in-browser training application created to control and track you training with a smart bike trainer. - [Expense.fyi](https://github.com/gokulkrishh/expense.fyi): A tool for tracking and managing expenses @@ -145,6 +144,12 @@ The projects in the [`deployment-platforms`](./deployment-platforms) directory s
+## Starter kits + +- [T3 stack](https://create.t3.gg/): Starter kit based on Next.js, TypeScript, tRPC, Prisma, Tailwind CSS and NextAuth.js +- [Indie Stack](https://github.com/remix-run/indie-stack): Remix Stack for deploying to Fly with SQLite, authentication, testing, linting, formatting +- [Blues Stack](https://github.com/remix-run/blues-stack): Remix Stack for deploying to Fly with PostgreSQL, authentication, testing, linting, formatting + ## About this repository The `latest` branch of this repository contains the examples with the latest stable version of Prisma CLI and Prisma Client (`@latest` on npm). These dependencies are kept up to date with a GitHub Action workflow, which updates them every time a new version of Prisma is released. diff --git a/data-modeling/delegated-types/package.json b/data-modeling/delegated-types/package.json index 90e4cb38cdc1..e5186c35b073 100644 --- a/data-modeling/delegated-types/package.json +++ b/data-modeling/delegated-types/package.json @@ -14,7 +14,7 @@ "jest": "29.7.0", "prisma": "5.7.0", "ts-jest": "29.1.1", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "dependencies": { diff --git a/databases/cockroachdb/package.json b/databases/cockroachdb/package.json index 61b365b48ccb..22ef3d121936 100644 --- a/databases/cockroachdb/package.json +++ b/databases/cockroachdb/package.json @@ -21,7 +21,7 @@ "prettyjson": "1.2.5", "prisma": "5.7.0", "ts-jest": "29.1.1", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" } diff --git a/databases/mongodb/package.json b/databases/mongodb/package.json index 42385cdf6bbd..47d8fe14c8ee 100644 --- a/databases/mongodb/package.json +++ b/databases/mongodb/package.json @@ -26,7 +26,7 @@ "jest": "29.7.0", "prisma": "5.7.0", "ts-jest": "29.1.1", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" } } diff --git a/databases/postgresql-supabase/package.json b/databases/postgresql-supabase/package.json index 05a82f84730e..de49b50b9bab 100644 --- a/databases/postgresql-supabase/package.json +++ b/databases/postgresql-supabase/package.json @@ -11,7 +11,7 @@ "@types/node": "20.10.4", "prisma": "5.7.0", "supabase": "1.115.5", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "dependencies": { diff --git a/databases/sql-server/package.json b/databases/sql-server/package.json index 9788829fba23..b49ea877c28b 100644 --- a/databases/sql-server/package.json +++ b/databases/sql-server/package.json @@ -19,7 +19,7 @@ "prettyjson": "1.2.5", "prisma": "5.7.0", "ts-jest": "29.1.1", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" } diff --git a/javascript/graphql-sdl-first/package.json b/javascript/graphql-sdl-first/package.json index 42df80b78a52..429b5535fe57 100644 --- a/javascript/graphql-sdl-first/package.json +++ b/javascript/graphql-sdl-first/package.json @@ -12,7 +12,7 @@ "@prisma/client": "5.7.0", "graphql": "16.8.1", "graphql-scalars": "1.22.4", - "graphql-yoga": "5.0.1" + "graphql-yoga": "5.0.2" }, "devDependencies": { "prisma": "5.7.0" diff --git a/typescript/graphql-auth/package.json b/typescript/graphql-auth/package.json index dd2fc310373f..45ebaf2b4aae 100644 --- a/typescript/graphql-auth/package.json +++ b/typescript/graphql-auth/package.json @@ -31,7 +31,7 @@ "@types/jsonwebtoken": "9.0.5", "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" }, diff --git a/typescript/graphql-fastify-sdl-first/package.json b/typescript/graphql-fastify-sdl-first/package.json index 314a752d1d88..ac6713de96eb 100644 --- a/typescript/graphql-fastify-sdl-first/package.json +++ b/typescript/graphql-fastify-sdl-first/package.json @@ -20,7 +20,7 @@ "devDependencies": { "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" }, diff --git a/typescript/graphql-fastify/package.json b/typescript/graphql-fastify/package.json index 4b84697f8146..dc73de9ef5a1 100644 --- a/typescript/graphql-fastify/package.json +++ b/typescript/graphql-fastify/package.json @@ -16,7 +16,7 @@ "devDependencies": { "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" }, diff --git a/typescript/graphql-hapi-sdl-first/package.json b/typescript/graphql-hapi-sdl-first/package.json index 833eb97efaea..a2bf6066e336 100644 --- a/typescript/graphql-hapi-sdl-first/package.json +++ b/typescript/graphql-hapi-sdl-first/package.json @@ -17,7 +17,7 @@ "devDependencies": { "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/graphql-hapi/package.json b/typescript/graphql-hapi/package.json index 6f2dd37cfe05..9b925ab35cad 100644 --- a/typescript/graphql-hapi/package.json +++ b/typescript/graphql-hapi/package.json @@ -25,7 +25,7 @@ "@types/hapi__hapi": "20.0.13", "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" }, diff --git a/typescript/graphql-nestjs-sdl-first/package.json b/typescript/graphql-nestjs-sdl-first/package.json index 42121048f433..74007cea4990 100644 --- a/typescript/graphql-nestjs-sdl-first/package.json +++ b/typescript/graphql-nestjs-sdl-first/package.json @@ -49,7 +49,7 @@ "graphql": "16.8.1", "graphql-scalars": "1.22.4", "graphql-tools": "9.0.0", - "reflect-metadata": "0.1.13", + "reflect-metadata": "0.1.14", "rimraf": "5.0.5", "rxjs": "7.8.1" }, @@ -67,12 +67,12 @@ "eslint-config-prettier": "9.1.0", "eslint-plugin-prettier": "5.0.1", "jest": "29.7.0", - "prettier": "3.1.0", + "prettier": "3.1.1", "prisma": "5.7.0", "supertest": "6.3.3", "ts-jest": "29.1.1", "ts-loader": "9.5.1", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "tsconfig-paths": "4.2.0", "typescript": "5.3.3" }, diff --git a/typescript/graphql-nestjs/package.json b/typescript/graphql-nestjs/package.json index 4d400db14ac7..df52bcd87753 100644 --- a/typescript/graphql-nestjs/package.json +++ b/typescript/graphql-nestjs/package.json @@ -48,7 +48,7 @@ "class-validator": "0.14.0", "graphql": "16.8.1", "graphql-tools": "9.0.0", - "reflect-metadata": "0.1.13", + "reflect-metadata": "0.1.14", "rimraf": "5.0.5", "rxjs": "7.8.1" }, @@ -66,12 +66,12 @@ "eslint-config-prettier": "9.1.0", "eslint-plugin-prettier": "5.0.1", "jest": "29.7.0", - "prettier": "3.1.0", + "prettier": "3.1.1", "prisma": "5.7.0", "supertest": "6.3.3", "ts-jest": "29.1.1", "ts-loader": "9.5.1", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "tsconfig-paths": "4.2.0", "typescript": "5.3.3" }, diff --git a/typescript/graphql-nextjs/package.json b/typescript/graphql-nextjs/package.json index a903c61b0e6e..92441169ac9f 100644 --- a/typescript/graphql-nextjs/package.json +++ b/typescript/graphql-nextjs/package.json @@ -17,7 +17,7 @@ "@prisma/client": "5.7.0", "graphql": "16.8.1", "graphql-scalars": "1.22.4", - "graphql-yoga": "5.0.1", + "graphql-yoga": "5.0.2", "next": "13.5.6", "react": "18.2.0", "react-dom": "18.2.0", @@ -26,9 +26,9 @@ "devDependencies": { "@types/graphql": "14.5.0", "@types/node": "20.10.4", - "@types/react": "18.2.42", + "@types/react": "18.2.43", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/graphql-nexus/package.json b/typescript/graphql-nexus/package.json index ef346673e630..a794b11e924d 100644 --- a/typescript/graphql-nexus/package.json +++ b/typescript/graphql-nexus/package.json @@ -25,7 +25,7 @@ "devDependencies": { "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" }, diff --git a/typescript/graphql-sdl-first/package.json b/typescript/graphql-sdl-first/package.json index 49858c34c0b3..65c722ef47ad 100644 --- a/typescript/graphql-sdl-first/package.json +++ b/typescript/graphql-sdl-first/package.json @@ -12,12 +12,12 @@ "@prisma/client": "5.7.0", "graphql": "16.8.1", "graphql-scalars": "1.22.4", - "graphql-yoga": "5.0.1" + "graphql-yoga": "5.0.2" }, "devDependencies": { "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" }, diff --git a/typescript/graphql-subscriptions/package.json b/typescript/graphql-subscriptions/package.json index 61c51f8f67fb..1c37554bc97a 100644 --- a/typescript/graphql-subscriptions/package.json +++ b/typescript/graphql-subscriptions/package.json @@ -25,7 +25,7 @@ "graphql-subscriptions": "2.0.0", "graphql-ws": "5.14.2", "nexus": "1.3.0", - "ws": "8.14.2" + "ws": "8.15.0" }, "devDependencies": { "@types/body-parser": "1.19.5", @@ -34,7 +34,7 @@ "@types/node": "20.10.4", "@types/ws": "8.5.10", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" }, diff --git a/typescript/graphql-typegraphql-crud/package.json b/typescript/graphql-typegraphql-crud/package.json index f5a127a0c17a..5157fea8c08a 100644 --- a/typescript/graphql-typegraphql-crud/package.json +++ b/typescript/graphql-typegraphql-crud/package.json @@ -12,14 +12,14 @@ "graphql": "16.8.1", "graphql-fields": "2.0.3", "graphql-type-json": "0.3.2", - "reflect-metadata": "0.1.13", + "reflect-metadata": "0.1.14", "type-graphql": "2.0.0-beta.3" }, "devDependencies": { "@types/node": "20.10.4", "@types/ws": "8.5.10", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typegraphql-prisma": "0.27.1", "typescript": "5.3.3" diff --git a/typescript/graphql-typegraphql/package.json b/typescript/graphql-typegraphql/package.json index 3b8a0d1b78d3..6cde0f6e34ab 100644 --- a/typescript/graphql-typegraphql/package.json +++ b/typescript/graphql-typegraphql/package.json @@ -9,14 +9,14 @@ "class-validator": "0.14.0", "graphql": "16.8.1", "graphql-scalars": "1.22.4", - "reflect-metadata": "0.1.13", + "reflect-metadata": "0.1.14", "type-graphql": "2.0.0-beta.3" }, "devDependencies": { "@types/node": "20.10.4", "@types/ws": "8.5.10", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" }, diff --git a/typescript/graphql/package.json b/typescript/graphql/package.json index cf048614fdba..05c733dc2df3 100644 --- a/typescript/graphql/package.json +++ b/typescript/graphql/package.json @@ -21,12 +21,12 @@ "@prisma/client": "5.7.0", "graphql": "16.8.1", "graphql-scalars": "1.22.4", - "graphql-yoga": "5.0.1" + "graphql-yoga": "5.0.2" }, "devDependencies": { "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "ts-node-dev": "2.0.0", "typescript": "5.3.3" }, diff --git a/typescript/grpc/package.json b/typescript/grpc/package.json index 474b9986c529..c703493c5bfa 100644 --- a/typescript/grpc/package.json +++ b/typescript/grpc/package.json @@ -21,7 +21,7 @@ "devDependencies": { "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/postgis-express/package.json b/typescript/postgis-express/package.json index 030013e8b1c9..baf50da06fbf 100644 --- a/typescript/postgis-express/package.json +++ b/typescript/postgis-express/package.json @@ -23,7 +23,7 @@ "randomstring": "1.3.0", "supertest": "6.3.3", "ts-jest": "29.1.1", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" } } diff --git a/typescript/remix/package.json b/typescript/remix/package.json index 2cccb9da4428..38c78216c172 100644 --- a/typescript/remix/package.json +++ b/typescript/remix/package.json @@ -21,11 +21,11 @@ "@remix-run/dev": "1.19.3", "@remix-run/eslint-config": "1.19.3", "@types/marked": "5.0.2", - "@types/react": "18.2.42", + "@types/react": "18.2.43", "@types/react-dom": "18.2.17", "eslint": "8.55.0", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "engines": { diff --git a/typescript/rest-express/package.json b/typescript/rest-express/package.json index e004ed469c66..66973b13cc86 100644 --- a/typescript/rest-express/package.json +++ b/typescript/rest-express/package.json @@ -13,7 +13,7 @@ "@types/express": "4.17.21", "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/rest-fastify/package.json b/typescript/rest-fastify/package.json index ce5caca75cfb..e1731bfe2ebd 100644 --- a/typescript/rest-fastify/package.json +++ b/typescript/rest-fastify/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/rest-hapi/package.json b/typescript/rest-hapi/package.json index 822ead513ced..6a65a7166b72 100644 --- a/typescript/rest-hapi/package.json +++ b/typescript/rest-hapi/package.json @@ -15,7 +15,7 @@ "@types/hapi__hapi": "20.0.13", "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/rest-koa/package.json b/typescript/rest-koa/package.json index 83dc6415f63f..0d125853f8ab 100644 --- a/typescript/rest-koa/package.json +++ b/typescript/rest-koa/package.json @@ -16,7 +16,7 @@ "@types/koa__router": "12.0.4", "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/rest-nestjs/package.json b/typescript/rest-nestjs/package.json index 8f0d99e9b197..b966eaf79c35 100644 --- a/typescript/rest-nestjs/package.json +++ b/typescript/rest-nestjs/package.json @@ -42,7 +42,7 @@ "@nestjs/common": "10.2.10", "@nestjs/core": "10.2.10", "@nestjs/platform-express": "10.2.10", - "reflect-metadata": "0.1.13", + "reflect-metadata": "0.1.14", "rimraf": "5.0.5", "rxjs": "7.8.1" }, @@ -60,12 +60,12 @@ "eslint-config-prettier": "9.1.0", "eslint-plugin-prettier": "5.0.1", "jest": "29.7.0", - "prettier": "3.1.0", + "prettier": "3.1.1", "prisma": "5.7.0", "supertest": "6.3.3", "ts-jest": "29.1.1", "ts-loader": "9.5.1", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "tsconfig-paths": "4.2.0", "typescript": "5.3.3" }, diff --git a/typescript/rest-nextjs-api-routes-auth/package.json b/typescript/rest-nextjs-api-routes-auth/package.json index 77666180fc08..de19e5065a3c 100644 --- a/typescript/rest-nextjs-api-routes-auth/package.json +++ b/typescript/rest-nextjs-api-routes-auth/package.json @@ -24,9 +24,9 @@ "devDependencies": { "@types/next-auth": "3.13.0", "@types/node": "20.10.4", - "@types/react": "18.2.42", + "@types/react": "18.2.43", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/rest-nextjs-api-routes/package.json b/typescript/rest-nextjs-api-routes/package.json index 6bf71ad14bb0..e0844b613ef4 100644 --- a/typescript/rest-nextjs-api-routes/package.json +++ b/typescript/rest-nextjs-api-routes/package.json @@ -18,10 +18,10 @@ }, "devDependencies": { "@types/node": "20.10.4", - "@types/react": "18.2.42", + "@types/react": "18.2.43", "@types/react-dom": "18.2.17", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/rest-nextjs-express/backend/package.json b/typescript/rest-nextjs-express/backend/package.json index 1eb543785089..760895851cb4 100644 --- a/typescript/rest-nextjs-express/backend/package.json +++ b/typescript/rest-nextjs-express/backend/package.json @@ -16,7 +16,7 @@ "@types/express": "4.17.21", "@types/node": "20.10.4", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/rest-nextjs-express/frontend/package.json b/typescript/rest-nextjs-express/frontend/package.json index 529ee0d52ffc..6f2ebabb1120 100644 --- a/typescript/rest-nextjs-express/frontend/package.json +++ b/typescript/rest-nextjs-express/frontend/package.json @@ -19,8 +19,8 @@ }, "devDependencies": { "@types/node": "20.10.4", - "@types/react": "18.2.42", - "ts-node": "10.9.1", + "@types/react": "18.2.43", + "ts-node": "10.9.2", "typescript": "5.3.3" } } diff --git a/typescript/rest-nuxtjs/package.json b/typescript/rest-nuxtjs/package.json index 9bbc7cbb2e55..f47ba7324193 100644 --- a/typescript/rest-nuxtjs/package.json +++ b/typescript/rest-nuxtjs/package.json @@ -20,7 +20,7 @@ "eslint-config-prettier": "9.1.0", "eslint-plugin-nuxt": "4.0.0", "eslint-plugin-prettier": "5.0.1", - "prettier": "3.1.0", + "prettier": "3.1.1", "prisma": "5.7.0" }, "prisma": { diff --git a/typescript/rest-sveltekit/package.json b/typescript/rest-sveltekit/package.json index cb86910c7513..051bcc8fdd04 100644 --- a/typescript/rest-sveltekit/package.json +++ b/typescript/rest-sveltekit/package.json @@ -18,12 +18,12 @@ "eslint": "8.55.0", "eslint-config-prettier": "9.1.0", "eslint-plugin-svelte": "2.35.1", - "prettier": "3.1.0", + "prettier": "3.1.1", "prettier-plugin-svelte": "3.1.2", "prisma": "5.7.0", "svelte": "4.2.8", "svelte-check": "3.6.2", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "tslib": "2.6.2", "typescript": "5.3.3", "vite": "4.5.1" diff --git a/typescript/script/package.json b/typescript/script/package.json index 29b020337d90..61bd03c6a222 100644 --- a/typescript/script/package.json +++ b/typescript/script/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" } } \ No newline at end of file diff --git a/typescript/sveltekit/package.json b/typescript/sveltekit/package.json index cb86910c7513..051bcc8fdd04 100644 --- a/typescript/sveltekit/package.json +++ b/typescript/sveltekit/package.json @@ -18,12 +18,12 @@ "eslint": "8.55.0", "eslint-config-prettier": "9.1.0", "eslint-plugin-svelte": "2.35.1", - "prettier": "3.1.0", + "prettier": "3.1.1", "prettier-plugin-svelte": "3.1.2", "prisma": "5.7.0", "svelte": "4.2.8", "svelte-check": "3.6.2", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "tslib": "2.6.2", "typescript": "5.3.3", "vite": "4.5.1" diff --git a/typescript/testing-express/package.json b/typescript/testing-express/package.json index 46254b159b6a..263aded5161b 100644 --- a/typescript/testing-express/package.json +++ b/typescript/testing-express/package.json @@ -27,7 +27,7 @@ "prisma": "5.7.0", "supertest": "6.3.3", "ts-jest": "29.1.1", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "prisma": { diff --git a/typescript/trpc-nextjs/package.json b/typescript/trpc-nextjs/package.json index 2b82b6a939a9..6c47c89e7508 100644 --- a/typescript/trpc-nextjs/package.json +++ b/typescript/trpc-nextjs/package.json @@ -24,10 +24,10 @@ }, "devDependencies": { "@types/node": "20.10.4", - "@types/react": "18.2.42", + "@types/react": "18.2.43", "@types/react-dom": "18.2.17", "prisma": "5.7.0", - "ts-node": "10.9.1", + "ts-node": "10.9.2", "typescript": "5.3.3" }, "ct3aMetadata": {