- 配置 pnpm workspace + Turborepo - 创建 Next.js 15 前端应用 (apps/web) - 创建 NestJS 10 后端应用 (apps/api) - 集成 Prisma ORM + Swagger + JWT 认证 - 添加共享包 (packages/shared, eslint-config, typescript-config) - 添加项目文档 (README, CLAUDE.md, docs/design.md) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
705 B
JSON
29 lines
705 B
JSON
{
|
|
"name": "@seclusion/web",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --port 3000",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"clean": "rm -rf .next .turbo node_modules"
|
|
},
|
|
"dependencies": {
|
|
"@seclusion/shared": "workspace:*",
|
|
"next": "^15.1.3",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@seclusion/eslint-config": "workspace:*",
|
|
"@seclusion/typescript-config": "workspace:*",
|
|
"@types/node": "^22.10.2",
|
|
"@types/react": "^19.0.2",
|
|
"@types/react-dom": "^19.0.2",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-next": "^15.1.3",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|