-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.09 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
{
"name": "accura",
"private": true,
"version": "0.1.0",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite",
"dev:mock": "VITE_USE_MOCK_API=true vite",
"docs:check": "node scripts/docs-check.mjs",
"docs:check:external": "node scripts/docs-check.mjs --external",
"build": "tsc -b && vite build",
"preview": "vite preview",
"smoke": "node scripts/run-smoke-tests.mjs",
"smoke:auth-sw": "node scripts/auth-sw-smoke.mjs",
"smoke:pwa": "node scripts/pwa-smoke.mjs",
"smoke:browser": "node scripts/browser-smoke.mjs",
"smoke:offline": "node scripts/offline-smoke.mjs",
"test": "npm run test:server-esm && vitest run",
"test:server-esm": "node --test scripts/*.test.mjs",
"test:visual": "playwright test tests/visual",
"test:visual:update": "playwright test tests/visual --update-snapshots",
"test:watch": "vitest",
"lint": "eslint .",
"licenses:generate": "node scripts/generate-third-party-notices.mjs --write",
"licenses:check": "node scripts/generate-third-party-notices.mjs --check"
},
"dependencies": {
"@fontsource-variable/google-sans-flex": "^5.3.1",
"@material/material-color-utilities": "^0.4.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"jose": "^6.2.8",
"motion": "^13.0.0",
"postgres": "^3.4.9",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"recharts": "^3.1.2",
"shape-morph": "^0.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@eslint/js": "^9.33.0",
"@playwright/test": "^1.62.1",
"@types/node": "^26.2.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vercel/node": "^5.9.7",
"@vitejs/plugin-react": "^5.0.2",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"fake-indexeddb": "^6.2.5",
"globals": "^16.3.0",
"playwright": "^1.62.1",
"typescript": "~5.9.2",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.3",
"vite-plugin-pwa": "^1.0.3",
"vitest": "^3.2.4"
}
}