chore: initialize application scaffold

This commit is contained in:
2026-08-23 19:55:59 +08:00
parent 36088ce005
commit 6591e3fa1e
36 changed files with 7771 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"name": "react-bq-01",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "concurrently \"npm run dev -w @example/api\" \"npm run dev -w @example/web\" \"npm run dev -w @example/admin\"",
"build": "npm run build -w @example/api && npm run build -w @example/web && npm run build -w @example/admin",
"start:api": "npm run start -w @example/api"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}