rsnext/examples/with-tailwindcss/package.json
Yuri Yakovlev 0c38922525
Update Tailwind example to v2.0 (#19278)
- Bump the Tailwind version to v2.0
- Add necessary latest `postcss` and `autoprefixer` deps
- Clean the tw config a bit
- Add dark mode styles
2020-11-20 18:18:49 +00:00

20 lines
377 B
JSON

{
"name": "with-tailwindcss",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"autoprefixer": "10.0.2",
"postcss": "8.1.7",
"tailwindcss": "^2.0.1"
},
"license": "MIT"
}