Initial commit

This commit is contained in:
Daniel Vassallo
2019-09-24 15:53:21 -07:00
commit f73fb6b5a3
15 changed files with 4228 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "homepage",
"version": "1.0.0",
"scripts": {
"clean": "rm -Rf ./dist && rm -f ./public/style.css",
"build": "npm run clean && postcss ./tailwind.style.css -o ./dist/style.css && cp -R ./public/* ./dist/ && cp ./dist/style.css ./public/style.css"
},
"author": "Daniel Vassallo",
"license": "MIT",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"autoprefixer": "^9.6.1",
"postcss-cli": "^6.1.3",
"tailwind": "^4.0.0",
"tailwindcss": "^1.1.2"
}
}