- 卡片式布局改为分组 PrimaryTable,Modal 改为 Drawer - 手写 hooks 替换为 TanStack Query(轮询/缓存/条件查询) - CSS 607行精简至73行,颜色迁移至 TDesign tokens - 可用率进度条颜色按 10% 一档红→绿渐变 - 新增纯函数测试 34 项全通过(排序/筛选/色阶阈值) - 同步更新主 specs 并归档变更文档
49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
{
|
|
"name": "dial-server",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "bun run scripts/dev.ts",
|
|
"dev:server": "bun --watch src/server/dev.ts",
|
|
"dev:web": "bunx --bun vite --host 127.0.0.1",
|
|
"build:web": "bunx --bun vite build",
|
|
"build": "bun run scripts/build.ts",
|
|
"start": "bun src/server/dev.ts",
|
|
"lint": "eslint .",
|
|
"format": "prettier . --write",
|
|
"format:check": "prettier . --check",
|
|
"check": "bun run typecheck && bun run lint && bun run format:check && bun test",
|
|
"verify": "bun run check && bun run build && bun run test:smoke",
|
|
"test": "bun test",
|
|
"test:smoke": "bun run scripts/smoke.ts",
|
|
"clean": "bun run scripts/clean.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@tanstack/react-query-devtools": "^5.100.10",
|
|
"@types/bun": "^1.3.13",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
"eslint": "^10.3.0",
|
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
"prettier": "^3.8.3",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.59.2",
|
|
"vite": "^8.0.11"
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-query": "^5.100.10",
|
|
"@xmldom/xmldom": "^0.9.10",
|
|
"cheerio": "^1.2.0",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6",
|
|
"recharts": "^3.8.1",
|
|
"tdesign-icons-react": "^0.6.4",
|
|
"tdesign-react": "^1.16.9",
|
|
"xpath": "^0.0.34"
|
|
}
|
|
}
|