-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "rental-admin",
"version": "2.0.0",
"description": "租车公司管理系统 - Cloudflare Worker + D1 + R2,前后端一体部署",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -n worker,web -c cyan,magenta \"npm:dev:worker\" \"npm:dev:web\"",
"dev:worker": "wrangler dev --port 8787",
"dev:web": "vite",
"build:web": "vite build",
"deploy": "npm run build:web && wrangler deploy",
"typecheck": "npm run typecheck:worker && npm run typecheck:web",
"typecheck:worker": "tsc -p tsconfig.worker.json --noEmit",
"typecheck:web": "vue-tsc -p tsconfig.frontend.json --noEmit",
"cf-typegen": "wrangler types",
"d1:create": "wrangler d1 create zjzc",
"d1:migrate": "wrangler d1 migrations apply zjzc --local",
"d1:migrate:remote": "wrangler d1 migrations apply zjzc --remote",
"r2:create": "wrangler r2 bucket create zjzc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check",
"lint:fix": "biome check --write",
"verify": "npm run typecheck && npm run lint && npm run test"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.2",
"axios": "^1.13.6",
"bcryptjs": "^3.0.3",
"dayjs": "^1.11.20",
"element-plus": "^2.13.5",
"hono": "^4.13.8",
"html2canvas": "^1.4.1",
"pinia": "^3.0.4",
"vue": "^3.5.30",
"vue-router": "^4.6.4",
"weui-icon": "^1.0.2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@biomejs/biome": "^2.5.14",
"@cloudflare/workers-types": "^5.20260917.1",
"@types/node": "^24.12.0",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/tsconfig": "^0.9.0",
"concurrently": "^9.1.2",
"typescript": "~5.9.3",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.0.1",
"vitest": "^5.0.1",
"vue-tsc": "^3.2.5",
"wrangler": "^4.134.0"
}
}