mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
fc335ac36c
* Add Tailwind css example * Fix read me * Add create-next-app setup to read me
24 lines
671 B
JSON
24 lines
671 B
JSON
{
|
|
"name": "with-tailwindcss",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"dev": "next & yarn dev:css",
|
|
"dev:css": "postcss styles/index.css --watch -c styles/config/postcss.config.js -o static/css/bundle.css",
|
|
"build": "next build & yarn build:css",
|
|
"build:css": "postcss styles/index.css -c styles/config/postcss.config.js -o static/css/bundle.css",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"next": "^4.1.3",
|
|
"react": "^16.0.0",
|
|
"react-dom": "^16.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^7.1.6",
|
|
"cssnano": "^3.10.0",
|
|
"postcss-cli": "^4.1.1",
|
|
"postcss-easy-import": "^3.0.0",
|
|
"tailwindcss": "^0.2.2"
|
|
}
|
|
}
|