-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.1 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": "@bauer-group/wifi-access-card-generator",
"version": "0.6.2",
"private": true,
"type": "module",
"description": "Generate WiFi access cards with QR codes - manage, print, and share wireless network access information",
"scripts": {
"dev": "npx vite",
"build": "npx tsc --noEmit && npx vite build",
"preview": "npx vite preview",
"test": "npx vitest",
"test:run": "npx vitest run",
"test:coverage": "npx vitest run --coverage",
"type-check": "npx tsc --noEmit",
"clean": "npx rimraf dist node_modules/.vite",
"generate-icons": "node scripts/generate-icons.mjs"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dexie": "^4.2.0",
"dexie-react-hooks": "^4.2.0",
"html2canvas-pro": "^2.0.2",
"i18next": "^25.8.0",
"i18next-browser-languagedetector": "^8.0.4",
"i18next-http-backend": "^3.0.2",
"jspdf": "^4.2.1",
"lucide-react": "^0.577.0",
"qrcode.react": "^4.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^16.5.4",
"tailwind-merge": "^3.3.0"
},
"devDependencies": {
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-tooltip": "^1.2.7",
"@tailwindcss/vite": "^4.1.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.0.0",
"rimraf": "^6.0.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.3",
"vite": "^8.0.1",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^4.0.18"
},
"overrides": {
"serialize-javascript": ">=7.0.3",
"vite-plugin-pwa": {
"vite": "$vite"
}
}
}