rsnext/examples/with-tailwindcss-emotion/package.json
Luis Alvarez D 63ea2d8297
Add CSS Modules examples to docs (#15601)
Fixes https://github.com/vercel/next.js/issues/15595

- Updated the tailwindcss and tailwindcss-emotion examples to the latest version of tailwindcss
- Added a new `with-styled-jsx` example
- Updated the `basic-css` example to use CSS Modules instead of styled-jsx
- Added the examples to the documentation page for built-in css support
2020-07-29 14:43:48 +00:00

28 lines
774 B
JSON

{
"name": "with-tailwindcss-emotion",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:base-css": "tailwindcss build ./styles/tailwind.base.css -o ./styles/base.css"
},
"dependencies": {
"@emotion/css": "^11.0.0-next.12",
"@emotion/react": "^11.0.0-next.12",
"@emotion/styled": "^11.0.0-next.12",
"next": "latest",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@emotion/babel-plugin": "^11.0.0-next.12",
"@emotion/server": "^11.0.0-next.12",
"@tailwindcss/ui": "^0.2.2",
"@tailwindcssinjs/macro": "^0.3.1",
"babel-plugin-macros": "2.8.0",
"tailwindcss": "^1.6.0"
},
"license": "MIT"
}