Initial WallMuse project

This commit is contained in:
fenglee
2026-05-09 09:12:41 +00:00
commit 3ea7d29827
91 changed files with 13136 additions and 0 deletions

27
apps/web/package.json Executable file
View File

@@ -0,0 +1,27 @@
{
"name": "@wallmuse/web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev -H 0.0.0.0 -p 3100",
"build": "next build",
"start": "next start -H 0.0.0.0 -p 3100",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@wallmuse/api-client": "workspace:*",
"@wallmuse/shared": "workspace:*",
"@wallmuse/ui-tokens": "workspace:*",
"lucide-react": "0.511.0",
"next": "15.3.3",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@types/node": "22.15.30",
"@types/react": "19.1.6",
"@types/react-dom": "19.1.5",
"typescript": "5.8.3"
}
}