mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
28 lines
627 B
JSON
28 lines
627 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": "Karthik V",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"graphql-tag": "^2.10.0",
|
|
"next": "^7.0.1",
|
|
"next-apollo": "^2.0.0",
|
|
"react": "^16.5.2",
|
|
"react-apollo": "^2.2.4",
|
|
"react-dom": "^16.5.2"
|
|
}
|
|
}
|