astro/examples/tailwindcss/package.json
Drew Powers 19e20f2c54
Add Tailwind support to Astro Dev Server (#222)
* Improve PostCSS and Tailwind support

* Update styling docs

* Changelog

* Fix test hanging
2021-05-21 14:02:19 -06:00

17 lines
390 B
JSON

{
"name": "@example/tailwindcss",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "astro dev",
"build": "astro build",
"astro-dev": "nodemon --delay 0.5 -w ../../packages/astro/dist -x '../../packages/astro/astro.mjs dev'"
},
"devDependencies": {
"astro": "^0.10.0",
"tailwindcss": "^2.1.2"
},
"snowpack": {
"workspaceRoot": "../.."
}
}