snipette-wripro-site/package.json
Hippo 7dbeb29bd9 Move eleventy and postcss to main dependencies
It was earlier in devDependencies, but that probably doesn't make
sense in this context. Let's just leave it here for now :P
2020-04-19 18:19:10 +05:30

20 lines
506 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",
"@11ty/eleventy": "^0.10.0",
"postcss-cli": "^7.1.0"
},
"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"
}
}