feat: scaffold frontend pnpm monorepo with apps (admin, web) and shared packages (types, api-client, ui)

This commit is contained in:
Bot
2026-08-30 23:55:17 +08:00
parent 874b421f39
commit 1e9b9bd0b2
11 changed files with 193 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"name": "@wtfx/web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start -p 3000"
},
"dependencies": {
"@wtfx/types": "workspace:*",
"@wtfx/api-client": "workspace:*",
"@wtfx/ui": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"next": "^14.2.4",
"ethers": "^6.13.0"
}
}