setup tailwind

This commit is contained in:
Greg Newman
2022-05-12 09:31:02 -04:00
parent 4490b961d6
commit 41a2e262b1
8 changed files with 1305 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"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": "postcss frontend/styles.css -w -d static/css/ --verbose",
"build": "NODE_ENV=production postcss styles.css -d static/css/ --verbose"
},
"dependencies": {
"autoprefixer": "^10.4.7",
"postcss": "^8.4.13",
"postcss-cli": "^9.1.0",
"tailwindcss": "^3.0.24"
}
}