graphql-engine/community/sample-apps/nextjs-postgres-graphql/package.json
hasura-bot 95444b60da update the nextjs postgres graphql sample app
GITHUB_PR_NUMBER: 9048
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/9048

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6159
Co-authored-by: Amit Kumar Sharma <91947037+amit-ksh@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 0565d8a00c944d72b46bc5ce0ff40fc3e8bfca51
2023-02-01 12:28:44 +00:00

28 lines
639 B
JSON

{
"name": "nextjs-postgres-graphql",
"version": "1.0.0",
"description": "Boiler plate to get started with nextjs and postgres backed GraphQL server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next",
"build": "next build",
"start": "next start"
},
"keywords": [
"nextjs",
"graphql",
"postgres"
],
"author": "Amit Kumar Sharma",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.6.9",
"graphql": "^16.6.0",
"next": "^12.3.1",
"next-with-apollo": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}