2017-08-14 16:41:12 +00:00
|
|
|
{
|
|
|
|
"name": "with-relay-modern",
|
|
|
|
"version": "3.0.3",
|
|
|
|
"description": "Example of Next.js with Relay Modern SSR",
|
|
|
|
"scripts": {
|
|
|
|
"graphcool-init": "graphcool init --schema schema/init-schema.graphql",
|
|
|
|
"dev": "next",
|
|
|
|
"build": "next build",
|
|
|
|
"start": "next start",
|
2018-09-04 15:50:44 +00:00
|
|
|
"relay": "relay-compiler --src ./ --exclude '**/.next/**' '**/node_modules/**' '**/test/**' '**/__generated__/**' --exclude '**/schema/**' --schema ./schema/schema.graphql",
|
2017-08-15 05:50:56 +00:00
|
|
|
"schema": "graphql get-schema dev"
|
2017-08-14 16:41:12 +00:00
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
|
|
|
"dotenv": "^4.0.0",
|
|
|
|
"dotenv-webpack": "^1.5.4",
|
2019-01-31 09:38:20 +00:00
|
|
|
"graphql": "^14.1.1",
|
|
|
|
"isomorphic-unfetch": "^3.0.0",
|
2018-01-30 20:44:18 +00:00
|
|
|
"next": "latest",
|
2019-01-05 11:19:27 +00:00
|
|
|
"react": "^16.7.0",
|
|
|
|
"react-dom": "^16.7.0",
|
2019-01-31 09:38:20 +00:00
|
|
|
"react-relay": "^2.0.0"
|
2017-08-14 16:41:12 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-01-31 09:38:20 +00:00
|
|
|
"babel-plugin-relay": "^2.0.0",
|
2017-08-14 16:41:12 +00:00
|
|
|
"graphcool": "^1.2.1",
|
2018-04-07 10:41:26 +00:00
|
|
|
"graphql-cli": "^1.0.0-beta.4",
|
2019-01-31 09:38:20 +00:00
|
|
|
"relay-compiler": "^2.0.0"
|
2017-08-14 16:41:12 +00:00
|
|
|
}
|
2017-08-15 05:50:56 +00:00
|
|
|
}
|