This commit is contained in:
zuevav
2026-05-20 19:33:02 +03:00
commit f4bca8449e
30 changed files with 4152 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
{
"name": "@zbrain/api",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run --watch src/main.ts",
"build": "tsc",
"start": "node dist/main.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"db:migrate": "bun run src/db/migrate.ts",
"db:seed": "bun run src/db/seed.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@zbrain/shared": "workspace:*",
"@zbrain/mcp-proxy": "workspace:*",
"express": "^4.21.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"helmet": "^8.0.0",
"compression": "^1.7.4",
"express-rate-limit": "^7.4.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"passport-yandex": "^0.0.5",
"passport-github2": "^0.1.12",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"drizzle-orm": "^0.34.0",
"postgres": "^3.4.4",
"zod": "^3.23.8",
"pino": "^9.4.0",
"pino-http": "^10.3.0",
"otplib": "^12.0.1",
"qrcode": "^1.5.4",
"http-proxy-middleware": "^3.0.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/compression": "^1.7.5",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.7",
"@types/qrcode": "^1.5.5",
"drizzle-kit": "^0.26.0",
"vitest": "^2.1.0",
"tsx": "^4.19.0"
}
}
+27
View File
@@ -0,0 +1,27 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022"],
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"declaration": false,
"outDir": "dist",
"rootDir": "src",
"baseUrl": ".",
"paths": {
"@zbrain/shared": ["../../packages/shared/src/index.ts"],
"@zbrain/shared/*": ["../../packages/shared/src/*"],
"@zbrain/mcp-proxy": ["../../packages/mcp-proxy/src/index.ts"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts"]
}
+48
View File
@@ -0,0 +1,48 @@
{
"name": "@zbrain/web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest run"
},
"dependencies": {
"@zbrain/shared": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"@tanstack/react-query": "^5.59.0",
"axios": "^1.7.7",
"zustand": "^5.0.0",
"react-hook-form": "^7.53.0",
"zod": "^3.23.8",
"@hookform/resolvers": "^3.9.0",
"tailwindcss": "^3.4.13",
"lucide-react": "^0.451.0",
"clsx": "^2.1.1",
"tailwind-merge": "^2.5.4",
"class-variance-authority": "^0.7.0",
"date-fns": "^4.1.0",
"recharts": "^2.13.0",
"qrcode.react": "^4.0.1",
"react-hot-toast": "^2.4.1"
},
"devDependencies": {
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"vite": "^5.4.8",
"typescript": "^5.6.0",
"vitest": "^2.1.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0"
}
}
+28
View File
@@ -0,0 +1,28 @@
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@zbrain/shared": ["../../packages/shared/src/index.ts"],
"@zbrain/shared/*": ["../../packages/shared/src/*"]
}
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}