-
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.03 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.03 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": "routine-minder",
"version": "2.1.0",
"type": "module",
"license": "MIT",
"description": "Simple routine tracking PWA with Google Sheets backend",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"test:e2e": "npx playwright test",
"test:e2e:headed": "npx playwright test --headed",
"preview": "vitest preview",
"check": "tsc"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-alert-dialog": "^1.1.7",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.3",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.1.4",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.2.0",
"@tanstack/react-query": "^5.90.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.13.1",
"html2canvas": "^1.4.1",
"lucide-react": "^0.453.0",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.71.2",
"react-icons": "^5.6.0",
"recharts": "^2.15.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"wouter": "^3.3.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.4.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.27",
"jsdom": "^27.4.0",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18"
}
}