personal-website/package.json

34 lines
901 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",
2024-07-21 21:13:22 +02:00
"deploy": "bun run build && sh scripts/deploy_to_uberspace.sh",
"preview": "astro preview",
"astro": "astro",
"format": "prettier . -w --config ./.prettierrc",
"format:check": "prettier . --check --config ./.prettierrc"
},
"dependencies": {
2024-07-21 18:12:50 +02:00
"@astrojs/mdx": "^3.1.3",
"@astrojs/react": "^3.6.0",
"@astrojs/rss": "^4.0.7",
2024-05-20 11:56:00 +02:00
"@astrojs/tailwind": "^5.1.0",
2024-04-14 14:47:52 +02:00
"@keystatic/astro": "^5.0.0",
2024-07-21 18:12:50 +02:00
"@keystatic/core": "^0.5.27",
"astro": "^4.12.2",
2023-12-23 19:17:45 +01:00
"mdast-flatten-listitem-paragraphs": "^1.0.0",
2024-04-27 18:28:09 +02:00
"react": "^18.3.1",
2024-05-20 11:56:00 +02:00
"sharp": "^0.33.4",
2024-07-21 18:12:50 +02:00
"tailwindcss": "^3.4.6"
},
"devDependencies": {
2024-07-21 18:12:50 +02:00
"@types/node": "^20.14.11",
2024-05-20 11:56:00 +02:00
"autoprefixer": "^10.4.19",
2024-07-21 18:12:50 +02:00
"postcss": "^8.4.39"
}
}