Initial commit of Astro version

This commit is contained in:
Bad Manners 2024-08-15 21:27:00 -03:00
commit e3d1f6999b
79 changed files with 9880 additions and 0 deletions

34
package.json Normal file
View file

@ -0,0 +1,34 @@
{
"name": "badmanners.xyz",
"type": "module",
"version": "2.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"sync": "astro sync",
"check": "astro check",
"astro": "astro",
"prettier": "prettier --write .",
"deploy-lftp": "dotenv tsx scripts/deploy-lftp.ts --"
},
"dependencies": {
"@astrojs/check": "^0.9.2",
"@astrojs/rss": "^4.0.7",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.13.3",
"date-fns": "^3.6.0",
"tailwindcss": "^3.4.9",
"tippy.js": "^6.3.7",
"typescript": "^5.5.4"
},
"devDependencies": {
"commander": "^12.1.0",
"dotenv-cli": "^7.4.2",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.6",
"tsx": "^4.17.0"
}
}