Files
xiaoxia-saas/apps/web/package.json
T
Xiaoxia AI b5a62ee9a3 feat: initial SaaS scaffold
- domain: User, Workspace, Project, AssetLibrary, Asset, IngestJob
- ports: repository interfaces
- application: use cases
- adapters: in-memory
- API: FastAPI 5 routes
- worker: Celery ingest_asset
- tests: 4 passing
2026-06-15 15:17:40 +08:00

25 lines
510 B
JSON

{
"name": "@xiaoxia/web",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start -p 3000",
"lint": "next lint"
},
"dependencies": {
"next": "14.2.5",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"typescript": "5.5.4",
"@types/node": "22.7.4",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"eslint": "8.57.1",
"eslint-config-next": "14.2.5"
}
}