rsnext/examples/with-graphql-gateway/package.json
Charly POLY cf0158ce8d
feat(examples): build a GraphQL Gateway with GraphQL Mesh and Next.js API routes (#36439)
* feat(examples): GraphQL Mesh Gateway example

* doc(examples/with-graphql-gateway): README

* fix(examples/with-graphql-gateway): ignore `.mesh/`

* Apply suggestions from code review

* lint-fix

Co-authored-by: Lee Robinson <me@leerob.io>
Co-authored-by: JJ Kasper <jj@jjsweb.site>
2022-05-23 11:02:21 -05:00

28 lines
687 B
JSON

{
"private": true,
"scripts": {
"prestart": "yarn build:mesh",
"start": "next dev",
"prebuild": "yarn build:mesh",
"build": "next build",
"start:prod": "next start",
"build:mesh": "mesh build"
},
"dependencies": {
"@graphql-mesh/cli": "0.68.1",
"@graphql-mesh/config": "0.35.1",
"@graphql-mesh/new-openapi": "0.4.10",
"@graphql-mesh/runtime": "0.34.1",
"@graphql-yoga/node": "latest",
"graphql": "16.3.0",
"next": "latest",
"react": "18.0.0",
"react-dom": "18.0.0"
},
"devDependencies": {
"@types/node": "17.0.24",
"@types/react": "18.0.5",
"@types/react-dom": "18.0.1",
"typescript": "4.6.3"
}
}