【同步】前端项目源码

【修复】工作流兼容问题
This commit is contained in:
chudong
2025-05-10 11:53:11 +08:00
parent c514471adc
commit f1a75afaba
584 changed files with 55714 additions and 110 deletions

37
frontend/package.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "baota-turborepo",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"test": "vitest",
"clear": "sh ./scripts/clear.sh",
"cursor:backup": "sh ./scripts/cursor_backup.sh",
"devcloud": "turbo run dev --filter cloud-control",
"buildcloud": "turbo run build --filter cloud-control"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@types/md5": "^2.3.5",
"@types/node": "^22.13.11",
"@types/ramda": "^0.30.2",
"fake-indexeddb": "^6.0.0",
"jsdom": "^26.0.0",
"turbo": "^2.4.4",
"typescript": "5.8.2",
"vitest": "^3.0.7",
"vue-i18n": "^11.1.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*"
]
}