refactor: 重构项目结构并优化代码

- 删除无用的文件和错误日志
- 创建统一的 imports 模块集中管理依赖
- 重构组件使用新的 imports 方式
- 修复文档路径大小写问题
- 优化类型定义和接口导出
- 更新依赖版本
- 改进错误处理和API配置
- 统一组件导出方式
This commit is contained in:
2026-03-27 16:56:06 +08:00
parent 2748456d8a
commit 22308fe042
337 changed files with 37060 additions and 57483 deletions

View File

@@ -1,84 +1,46 @@
{
"name": "server",
"name": "crawlful-hub-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"description": "Crawlful Hub 后端服务",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"check": "tsc --noEmit",
"test": "jest --verbose",
"test:stress": "jest src/tests/performance/stress.test.ts --verbose",
"test:rbac": "jest src/tests/security/rbac.test.ts --verbose"
"build": "tsc",
"dev": "ts-node-dev src/index.ts",
"test": "jest",
"lint": "eslint src --ext .ts"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@nestjs/common": "^11.1.17",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/swagger": "^11.2.6",
"@nestjs/typeorm": "^11.0.0",
"@prisma/client": "^7.5.0",
"@types/bcrypt": "^6.0.0",
"@types/node-cron": "^3.0.11",
"@types/speakeasy": "^2.0.10",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"bcrypt": "^6.0.0",
"bullmq": "^5.71.0",
"class-validator": "^0.15.1",
"cors": "^2.8.6",
"dotenv": "^16.4.5",
"express": "^5.2.1",
"ioredis": "^5.10.0",
"jsonwebtoken": "^9.0.3",
"bcrypt": "^5.1.1",
"bullmq": "^4.12.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"mysql2": "^3.18.2",
"node-cache": "^5.1.2",
"node-cron": "^4.2.1",
"redis": "^5.11.0",
"morgan": "^1.10.0",
"mysql2": "^3.6.5",
"redis": "^4.6.12",
"sharp": "^0.34.5",
"speakeasy": "^2.0.0",
"tsoa": "^7.0.0-alpha.0",
"typedi": "^0.10.0",
"typeorm": "^0.3.28",
"uuid": "^11.1.0",
"ws": "^8.19.0",
"xstate": "^5.0.0",
"typescript": "^5.3.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@nestjs/config": "^4.0.3",
"@nestjs/testing": "^11.1.17",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.3",
"@types/node-cache": "^4.1.3",
"@types/redis": "^4.0.10",
"@types/sharp": "^0.31.1",
"@types/speakeasy": "^2.0.10",
"@types/supertest": "^7.2.0",
"eslint": "^8.57.1",
"eslint-plugin-boundaries": "^4.0.0",
"jest": "^30.3.0",
"nodemon": "^3.1.14",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2"
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-node-dev": "^2.0.0"
}
}