mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
* Removed postcss and postcss-cli because it’s not needed in latest versions of Tailwind cli. * Now using tailwind cli for dev and build * Added cssnano. For now I’m not seeing much if any reduction in size but as it grows we might.
21 lines
614 B
JSON
21 lines
614 B
JSON
{
|
|
"name": "boost.org",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"repository": "git@github.com:revsys/boost.org.git",
|
|
"author": "Greg Newman <greg@gregnewman.org>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "tailwindcss -i frontend/styles.css -o static/css/styles.css --watch",
|
|
"build": "NODE_ENV=production tailwindcss -i frontend/styles.css -o static/css/styles.css --minify"
|
|
},
|
|
"dependencies": {
|
|
"@lottiefiles/lottie-js": "^0.4.1",
|
|
"@tailwindcss/forms": "^0.5.3",
|
|
"alpinejs": "^3.10.2",
|
|
"autoprefixer": "^10.4.12",
|
|
"cssnano": "^5.1.14",
|
|
"tailwindcss": "^3.2.1"
|
|
}
|
|
}
|