rsnext/examples/with-reason-relay/package.json
Luc Leray f52955ec94
Clean up examples package.json (#27121)
Clean up package.json files in the `examples` directory:
- Add `private: true`
- Remove `version` (because they are irrelevant for packages that are not meant to be published)
- Remove `name` (because they are optional for packages that are not meant to be published, and when someone clones an example, they often rename it and the property becomes stale)
- Remove `author`
- Remove `description`
- Remove `license`

Also remove `with-dynamic-app-layout` example completely, since it does the same as `layout-component` (https://github.com/vercel/next.js/pull/27121#discussion_r668178408).

## Documentation / Examples

- [x] Make sure the linting passes
2021-07-12 19:58:03 +00:00

37 lines
937 B
JSON

{
"private": true,
"scripts": {
"dev": "next",
"build": "bsb -make-world",
"next": "next",
"start": "next start",
"relay": "reason-relay-compiler",
"schema": "graphql get-schema -e dev"
},
"dependencies": {
"bs-fetch": "0.5.2",
"bs-platform": "7.2.2",
"graphql": "15.0.0",
"isomorphic-unfetch": "^3.0.0",
"next": "latest",
"next-transpile-modules": "7.3.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-relay": "0.0.0-experimental-8cc94ddc",
"reason-promise": "1.0.2",
"reason-react": "0.7.0",
"reason-relay": "0.8.2",
"relay-config": "9.0.0",
"relay-runtime": "9.0.0"
},
"devDependencies": {
"babel-plugin-relay": "^9.0.0",
"graphql-cli": "^3.0.14",
"relay-compiler": "9.0.0"
},
"resolutions": {
"graphql": "15.0.0",
"react": "0.0.0-experimental-e5d06e34b",
"react-dom": "0.0.0-experimental-e5d06e34b"
}
}