Initial project scaffold

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-09 14:36:35 +08:00
co-authored by Cursor
commit 6323e70e49
39 changed files with 8664 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "easyai-ai-gateway",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.18.1",
"scripts": {
"dev": "scripts/dev.sh",
"build": "nx run-many -t build -p api web",
"test": "nx run-many -t test -p api web",
"lint": "nx run-many -t lint -p web contracts",
"db:create": "scripts/create-database.sh",
"migrate": "nx run api:migrate"
},
"devDependencies": {
"@nx/vite": "^21.0.0",
"@vitejs/plugin-react": "^5.0.0",
"nx": "^21.0.0",
"typescript": "^5.8.0",
"vite": "^7.0.0"
}
}