-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.33 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
{
"name": "tabulapersonae",
"version": "0.1.0",
"license": "AGPL-3.0-or-later",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:visual": "playwright test --config=playwright.visual.config.ts",
"test:visual:update": "playwright test --config=playwright.visual.config.ts --update-snapshots",
"test:visual:chromium": "playwright test --config=playwright.visual.config.ts --project=chromium",
"test:visual:firefox": "playwright test --config=playwright.visual.config.ts --project=firefox",
"test:visual:webkit": "playwright test --config=playwright.visual.config.ts --project=webkit",
"test:visual:mobile": "playwright test --config=playwright.visual.config.ts --project=mobile",
"test:e2e": "playwright test",
"test:perf": "playwright test --config=playwright.config.ts __tests__/e2e/performance.spec.ts",
"test:bench": "vitest bench --config=vitest.bench.config.ts"
},
"dependencies": {
"@kobalte/core": "^0.13.11",
"@solidjs/router": "^0.15.4",
"@thisbeyond/solid-dnd": "^0.7.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.4.12",
"firebase": "^12.13.0",
"lucide-solid": "^0.479.0",
"marked": "^18.0.6",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.7.284",
"qrcode": "^1.5.4",
"solid-js": "^1.9.13",
"tailwind-merge": "^2.6.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@playwright/test": "^1.60.0",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.2.0",
"@types/node": "^22.19.19",
"@types/qrcode": "^1.5.6",
"@vitest/coverage-v8": "^3.2.4",
"axe-core": "^4.11.4",
"eslint": "^10.4.0",
"firebase-tools": "^15.18.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.15",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^6.4.2",
"vite-plugin-pwa": "^1.3.0",
"vite-plugin-solid": "^2.11.12",
"vitest": "^3.2.4",
"vitest-axe": "^0.1.0"
}
}