mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-05 22:34:22 +03:00
95444b60da
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
28 lines
639 B
JSON
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"
|
|
}
|
|
}
|