-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.16 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "stormbox-vue",
"version": "1.0.0",
"description": "A modern Vue 3 webmail client using JMAP",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"serve": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:local": "LOCAL_STACK=1 playwright test",
"test:e2e:local:full": "LOCAL_STACK=1 INCLUDE_CHROMIUM=1 playwright test",
"test:e2e:install": "playwright install --with-deps",
"stack:up": "docker compose -f thunderbird-accounts/docker-compose.yml up --build -d",
"stack:configure": "node tests/fixtures/configure-keycloak.mjs && node tests/fixtures/configure-stalwart.mjs",
"stack:seed": "npm run stack:configure && node tests/fixtures/seed-mail.mjs",
"stack:seed-dev": "node tests/fixtures/seed-dev-mail.mjs",
"stack:ws-proxy": "node tests/fixtures/ws-proxy/server.mjs"
},
"dependencies": {
"@journeyapps/wa-sqlite": "1.7.0",
"@lucide/vue": "1.16.0",
"@tanstack/vue-virtual": "3.13.26",
"@vueuse/core": "14.3.0",
"dompurify": "3.4.7",
"linkify-string": "4.3.3",
"linkifyjs": "4.3.3",
"oidc-spa": "10.2.3",
"pinia": "3.0.4",
"squire-rte": "2.4.6",
"vue": "3.5.35",
"vue-router": "^5.0.7"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.60.0",
"@types/node": "25.9.1",
"@vitejs/plugin-basic-ssl": "2.3.0",
"@vitejs/plugin-vue": "6.0.7",
"@vitest/ui": "4.1.7",
"@vue/compiler-sfc": "3.5.35",
"@vue/eslint-config-typescript": "14.7.0",
"@vue/test-utils": "2.4.10",
"eslint": "10.4.0",
"eslint-import-resolver-node": "0.4.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-vue": "10.9.1",
"globals": "17.6.0",
"happy-dom": "20.9.0",
"jiti": "2.7.0",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0",
"vite": "8.0.14",
"vitest": "4.1.7",
"vue-tsc": "3.3.2",
"ws": "8.21.0"
},
"overrides": {
"glob": "13.0.6"
}
}