mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
4a0278b5c0
* Apollo + Authentication + graph.cool example * Fix linting errors
34 lines
645 B
JSON
34 lines
645 B
JSON
{
|
|
"name": "with-apollo-auth",
|
|
"version": "0.0.0",
|
|
"author": "",
|
|
"license": "ISC",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"test": "NODE_ENV=test ava"
|
|
},
|
|
"dependencies": {
|
|
"cookie": "^0.3.1",
|
|
"graphql": "^0.9.3",
|
|
"isomorphic-fetch": "^2.2.1",
|
|
"next": "latest",
|
|
"prop-types": "^15.5.10",
|
|
"react": "^15.5.4",
|
|
"react-apollo": "^1.1.3",
|
|
"react-dom": "^15.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.19.1",
|
|
"clear-require": "^2.0.0",
|
|
"glob": "^7.1.2"
|
|
},
|
|
"ava": {
|
|
"require": [
|
|
"babel-register"
|
|
],
|
|
"babel": "inherit"
|
|
}
|
|
}
|