-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 915 Bytes
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
{
"name": "zmail",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "concurrently -n api,web -c cyan,green \"vp run --filter @zmail/api dev\" \"vp run --filter @zmail/web dev\"",
"test": "vp test",
"typecheck": "tsc -b",
"check": "vp check",
"smoke:web": "node scripts/smoke-real-web-ui.mjs",
"smoke:container": "node scripts/smoke-stateless-container.mjs"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"hono": "^4.6.14",
"vue": "^3.5.13"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^6.0.7",
"concurrently": "^9.1.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^8.0.10",
"vite-plus": "^0.1.19",
"vitest": "catalog:",
"vue-tsc": "^2.2.0"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.33.0"
}