chore(web): init web project

This commit is contained in:
2026-03-10 11:00:14 +08:00
parent 4fce1c6bdd
commit 4d43ebd21e
18 changed files with 355 additions and 4 deletions

25
apps/web/package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "helios-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@heroui/react": "3.0.0-beta.8",
"@heroui/styles": "3.0.0-beta.8",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"typescript": "^5"
}
}