graphql-engine/community/sample-apps/nextjs-postgres-graphql/package.json

31 lines
712 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": {
"apollo-boost": "^0.4.4",
"graphql": "^14.5.6",
"graphql-tag": "^2.10.1",
"next": "^9.0.5",
"next-apollo": "^3.1.2",
"next-server": "^9.0.5",
"react": "^16.9.0",
"react-apollo": "^3.1.1",
"react-dom": "^16.9.0"
}
}