rsnext/examples/cms-takeshape/package.json
Nick Babcock 5629223407
Update examples to use React 17 (#26133)
[With next 11 requiring react 17](https://nextjs.org/blog/next-11#upgrade-guide), most of the examples
need to be updated, so the following snippet updated all the examples to
a compatible react version.

```bash
cd examples/
fd -g 'package.json' | xargs sed -r -i 's/"react": ".*"/"react": "^17.0.2"/
fd -g 'package.json' | xargs sed -r -i 's/"react-dom": ".*"/"react-dom": "^17.0.2"/'

# exclude experimental react version
git checkout with-reason-relay/package.json
```
2021-06-16 16:43:26 +00:00

25 lines
540 B
JSON

{
"name": "cms-takeshape",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"classnames": "2.2.6",
"date-fns": "2.10.0",
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark": "11.0.2",
"remark-html": "10.0.0",
"takeshape-routing": "4.86.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.0",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.2.0"
},
"license": "MIT"
}