- Included Tailwind CSS as a Vite plugin. - Updated package.json to include dependencies for React, React DOM, and Tailwind CSS. - Adjusted TypeScript configuration to support JSX with React.
32 lines
768 B
JSON
32 lines
768 B
JSON
{
|
|
"name": "nicholai-work-2026",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro build && wrangler pages dev",
|
|
"astro": "astro",
|
|
"deploy": "astro build && wrangler pages deploy",
|
|
"cf-typegen": "wrangler types"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/cloudflare": "^12.6.12",
|
|
"@astrojs/mdx": "^4.3.12",
|
|
"@astrojs/react": "^4.4.2",
|
|
"@astrojs/rss": "^4.0.14",
|
|
"@astrojs/sitemap": "^3.6.0",
|
|
"@tailwindcss/vite": "^4.1.17",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"astro": "^5.16.4",
|
|
"react": "^19.2.1",
|
|
"react-dom": "^19.2.1",
|
|
"sharp": "^0.34.3",
|
|
"tailwindcss": "^4.1.17"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.10.1",
|
|
"wrangler": "^4.53.0"
|
|
}
|
|
} |