rsnext/examples/blog-with-comment/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

28 lines
613 B
JSON

{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@auth0/auth0-react": "^1.4.0",
"@tailwindcss/typography": "^0.4.0",
"date-fns": "^2.19.0",
"gray-matter": "4.0.3",
"ioredis": "^4.27.1",
"nanoid": "^3.1.22",
"next": "^10.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark": "13.0.0",
"remark-html": "13.0.1",
"swr": "^0.5.5"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"postcss": "^8.2.13",
"prettier": "^2.2.1",
"tailwindcss": "^2.1.2"
}
}