personal-website/package.json

30 lines
772 B
JSON

{
"name": "personal-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"deploy": "pnpm build && sh scripts/deploy_to_uberspace.sh",
"preview": "astro preview",
"astro": "astro",
"format": "prettier . -w --config ./.prettierrc",
"format:check": "prettier . --check --config ./.prettierrc"
},
"dependencies": {
"@astrojs/mdx": "^1.1.5",
"@astrojs/rss": "^4.0.5",
"@astrojs/tailwind": "^5.0.3",
"astro": "^4.0.6",
"mdast-flatten-listitem-paragraphs": "^1.0.0",
"sharp": "^0.33.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0"
}
}