-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.75 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "cpap-analyzer",
"version": "2026.07.4",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && cp dist/index.html dist/404.html",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"bench:renderer": "BENCH_RENDERER=1 vitest run src/components/charts/canvas/__tests__/SignalRenderer.bench.test.ts",
"test:e2e": "playwright test",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.scripts.json",
"release:version": "node scripts/release/compute-version.mjs",
"release:cut": "node scripts/release/cut-release.mjs",
"prepare": "husky"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.105.0",
"@mlc-ai/web-llm": "^0.2.84",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dialog": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.0",
"@radix-ui/react-popover": "^1.1.0",
"@radix-ui/react-select": "^2.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.0",
"@radix-ui/react-tooltip": "^1.1.0",
"@types/katex": "^0.16.8",
"comlink": "^4.4.2",
"d3": "^7.9.0",
"jspdf": "^4.1.0",
"katex": "^0.16.28",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.0",
"react-router-dom": "^6.28.0",
"recharts": "^2.15.0",
"zod": "^3.24.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.0",
"@size-limit/preset-app": "^11.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/d3": "^7.4.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"fake-indexeddb": "^6.0.0",
"fast-check": "^3.23.0",
"fft.js": "^4.0.4",
"globals": "^15.14.0",
"husky": "^9.1.0",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.0",
"ml-matrix": "^6.12.0",
"prettier": "^3.4.0",
"size-limit": "^11.0.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.22.4",
"typescript": "^5.7.0",
"typescript-eslint": "^8.18.0",
"vite": "^8.0.16",
"vite-plugin-pwa": "^1.3.0",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^4.1.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,css,html}": [
"prettier --write"
]
}
}