snipette-wripro-site/package.json

20 lines
506 B
JSON
Raw Permalink Normal View History

{
"dependencies": {
2020-04-06 12:18:34 -04:00
"@fullhuman/postcss-purgecss": "^2.1.0",
2020-04-06 12:04:58 -04:00
"autoprefixer": "^9.7.5",
2020-04-06 12:18:34 -04:00
"cssnano": "^4.1.10",
"npm-run-all": "^4.1.5",
"postcss-import": "^12.0.1",
2020-04-06 12:08:57 -04:00
"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"
}
}