initial commit

This commit is contained in:
jackycheng
2025-08-25 17:11:15 +08:00
commit 436b6f66a6
31 changed files with 8295 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn start:all",
"start:all": "concurrently -n 'client,server' 'yarn workspace egret-app-client dev' 'yarn workspace egret-app-server start'",
"start:client": "yarn workspace egret-app-client dev",
"start:server": "yarn workspace egret-app-server start",
"build": "lerna run build && node ./scripts/post-build.js"
},
"devDependencies": {
"@types/node": "^18",
"concurrently": "^9.1.0",
"dotenv": "^16.4.7",
"lerna": "^4.0.0",
"typescript": "^5.7.2"
}
}