rsnext/examples/with-relay-modern/package.json

26 lines
727 B
JSON
Raw Normal View History

2017-08-14 18:41:12 +02:00
{
"name": "with-relay-modern",
"version": "1.0.0",
"description": "Example of Next.js with Relay Modern",
2017-08-14 18:41:12 +02:00
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"relay": "relay-compiler --src ./ --exclude '**/.next/**' '**/node_modules/**' '**/test/**' '**/__generated__/**' --exclude '**/schema/**' --schema ./schema/schema.graphql",
"schema": "graphql get-schema -e dev"
2017-08-14 18:41:12 +02:00
},
"license": "ISC",
"dependencies": {
"graphql": "^14.6.0",
2018-01-30 21:44:18 +01:00
"next": "latest",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-relay": "^9.0.0"
2017-08-14 18:41:12 +02:00
},
"devDependencies": {
"babel-plugin-relay": "^9.0.0",
"graphql-cli": "^3.0.14",
"relay-compiler": "^9.0.0"
2017-08-14 18:41:12 +02:00
}
}