Initial commit

This commit is contained in:
2024-08-27 19:03:24 -05:00
commit 5438f9e358
27 changed files with 2693 additions and 0 deletions

19
web/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "html",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:css": "npx tailwindcss -i ./src/styles/tailwind.css -o ./public/css/styles.css --minify",
"minify:js": "terser ./src/js/app.js -o ./public/js/app.min.js --compress"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"terser": "^5.31.6"
}
}