Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/graphql nextjs missing deps Fixes #4985 #4986

Closed
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions typescript/graphql-nextjs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
node_modules/
src/generated/
.next/

# lock files
*lock.*
*.lock

# db
*.db*
8 changes: 7 additions & 1 deletion typescript/graphql-nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@
},
"dependencies": {
"@apollo/client": "3.7.17",
"@pothos/plugin-prisma": "3.53.0",
"@pothos/core": "3.31.0",
"@pothos/plugin-prisma": "3.53.0",
"@prisma/client": "5.0.0",
"graphql": "16.7.1",
"graphql-scalars": "1.22.2",
"graphql-tag": "^2.12.6",
"graphql-yoga": "4.0.3",
"next": "13.4.12",
"react": "18.2.0",
Expand All @@ -33,5 +34,10 @@
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"pkg": {
"assets": [
"node_modules/.prisma/client/*.node"
]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you clarify what this snippet does & how it impacts this example?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Anyone actively maintains this repo?

I can volunteer!

}
}