Skip to content

Commit

Permalink
Merge pull request #660 from prisma/latest
Browse files Browse the repository at this point in the history
[pull] latest from prisma:latest
  • Loading branch information
pull[bot] committed Dec 10, 2023
2 parents 9095c43 + d850c78 commit 37b7168
Show file tree
Hide file tree
Showing 40 changed files with 67 additions and 62 deletions.
2 changes: 1 addition & 1 deletion .github/tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -145,6 +144,12 @@ The projects in the [`deployment-platforms`](./deployment-platforms) directory s

<hr>

## 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.
Expand Down
2 changes: 1 addition & 1 deletion data-modeling/delegated-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion databases/cockroachdb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion databases/mongodb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
2 changes: 1 addition & 1 deletion databases/postgresql-supabase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion databases/sql-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion javascript/graphql-sdl-first/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion typescript/graphql-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion typescript/graphql-fastify-sdl-first/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion typescript/graphql-fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion typescript/graphql-hapi-sdl-first/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion typescript/graphql-hapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
6 changes: 3 additions & 3 deletions typescript/graphql-nestjs-sdl-first/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand All @@ -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"
},
Expand Down
6 changes: 3 additions & 3 deletions typescript/graphql-nestjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand All @@ -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"
},
Expand Down
6 changes: 3 additions & 3 deletions typescript/graphql-nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion typescript/graphql-nexus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
4 changes: 2 additions & 2 deletions typescript/graphql-sdl-first/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
4 changes: 2 additions & 2 deletions typescript/graphql-subscriptions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
},
Expand Down
4 changes: 2 additions & 2 deletions typescript/graphql-typegraphql-crud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions typescript/graphql-typegraphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
4 changes: 2 additions & 2 deletions typescript/graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion typescript/grpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion typescript/postgis-express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
4 changes: 2 additions & 2 deletions typescript/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion typescript/rest-express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion typescript/rest-fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion typescript/rest-hapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion typescript/rest-koa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
6 changes: 3 additions & 3 deletions typescript/rest-nestjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand All @@ -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"
},
Expand Down
Loading

0 comments on commit 37b7168

Please sign in to comment.