rsnext/examples/with-tailwindcss/package.json
Jamie Barton 196f71feb7 Refactor with tailwindcss example to use next-css (#5461)
Instead of bundling `postcss-cli` we can now make use of `@zeit/with-css`.

This also means we can get rid of the `<style>` import and concurrent build step for css. 🎉
2018-11-08 14:42:55 +01:00

21 lines
426 B
JSON

{
"name": "with-tailwindcss",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"next": "latest",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"cssnano": "^3.10.0",
"postcss-easy-import": "^3.0.0",
"tailwindcss": "^0.6.6"
}
}