-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.88 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
{
"name": "vqol",
"private": true,
"version": "0.1.0-pre",
"type": "module",
"description": "Patient-owned VEINES-QOL/Sym tracker. Static, white-labelable, viral OSS PWA for vein and vascular practices.",
"license": "MIT",
"homepage": "https://github.com/ByteWorthyLLC/vqol",
"repository": {
"type": "git",
"url": "https://github.com/ByteWorthyLLC/vqol.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "npm run check:types && npm run check:contrast && npm run check:translations",
"check:types": "svelte-check --tsconfig ./tsconfig.json",
"check:contrast": "node --experimental-strip-types scripts/validate-contrast.ts",
"check:translations": "node --experimental-strip-types scripts/validate-translations.ts",
"check:lighthouse": "node scripts/check-lighthouse-accessibility.mjs",
"assets:launch": "node scripts/capture-launch-assets.mjs",
"smoke:devices": "node scripts/device-smoke.mjs",
"audit:telemetry": "node --experimental-strip-types scripts/audit-telemetry.ts",
"audit:deps": "npm audit --audit-level=moderate",
"verify": "npm run check && npm test && npm run build && npm run check:lighthouse && npm run audit:telemetry && npm run audit:deps",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/qrcode": "^1.5.6",
"fake-indexeddb": "^6.0.0",
"jsdom": "^29.1.1",
"lighthouse": "^13.4.0",
"playwright": "^1.61.1",
"svelte": "^5.56.4",
"svelte-check": "^4.7.1",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vite": "^8.1.2",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.9"
},
"dependencies": {
"idb": "^8.0.1",
"qrcode": "^1.5.4",
"uplot": "^1.6.32"
},
"overrides": {
"serialize-javascript": "^7.0.5"
}
}