graphql-engine/community/boilerplates/nextjs-postgres-graphql/package.json
2018-10-10 12:59:48 +05:30

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"
}
}