Initial commit

This commit is contained in:
Emanuel Turis
2023-10-13 22:20:05 +03:00
commit ccb0c914e5
18 changed files with 3673 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "htmx-go-todo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"vite build --watch\" \"tailwindcss -i ./src/index.css -o ./static/index.css --watch\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-go-template": "^0.0.15",
"tailwindcss": "^3.3.3",
"vite": "^4.4.11"
},
"dependencies": {
"htmx.org": "^1.9.6"
}
}