Initial commit

This commit is contained in:
2025-10-22 10:23:49 -07:00
commit ed6cf5e2af
78 changed files with 14686 additions and 0 deletions

34
frontend/package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "astro-hono-frontend",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "astro dev --host",
"build": "astro build",
"build:check": "astro check && astro build",
"preview": "astro preview --host",
"start": "node ./dist/server/entry.mjs",
"astro": "astro"
},
"dependencies": {
"@astrojs/react": "^4.4.0",
"@paper-design/shaders-react": "^0.0.60",
"@tailwindcss/typography": "^0.5.19",
"@types/qrcode": "^1.5.5",
"astro": "^5.14.1",
"geist": "^1.5.1",
"marked": "^11.0.0",
"qrcode": "^1.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.0",
"@astrojs/node": "^9.0.0",
"@tailwindcss/postcss": "^4.1.13",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.13",
"tw-animate-css": "^1.4.0",
"typescript": "^5.3.0"
}
}