personal-website/package.json

29 lines
742 B
JSON
Raw Normal View History

{
"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",
2023-12-05 20:45:52 +01:00
"@astrojs/tailwind": "^5.0.3",
2023-12-20 15:54:37 +01:00
"astro": "^4.0.6",
2023-12-23 19:17:45 +01:00
"mdast-flatten-listitem-paragraphs": "^1.0.0",
2023-12-20 15:54:37 +01:00
"sharp": "^0.33.1"
},
"devDependencies": {
2023-12-20 15:54:37 +01:00
"@types/node": "^20.10.5",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
2023-12-20 15:54:37 +01:00
"tailwindcss": "^3.4.0"
}
}