4194231444
Let's modularise our CSS and @import it all to one place!
21 lines
533 B
JSON
21 lines
533 B
JSON
{
|
|
"dependencies": {
|
|
"@fullhuman/postcss-purgecss": "^2.1.0",
|
|
"autoprefixer": "^9.7.5",
|
|
"cssnano": "^4.1.10",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss-import": "^12.0.1",
|
|
"tailwindcss": "^1.2.0",
|
|
"watch": "^1.0.2"
|
|
},
|
|
"scripts": {
|
|
"build": "npm-run-all build:css build:html",
|
|
"build:css": "postcss src/style.css -o dist/style.css",
|
|
"build:html": "eleventy",
|
|
"watch": "watch 'npm run build' ./src"
|
|
},
|
|
"devDependencies": {
|
|
"@11ty/eleventy": "^0.10.0",
|
|
"postcss-cli": "^7.1.0"
|
|
}
|
|
}
|