-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.21 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
{
"private": true,
"scripts": {
"data:days": "node scripts/build-day-data.mjs",
"predev": "npm run data:days",
"prebuild": "npm run data:days",
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install chromium"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.51.0",
"@tabler/icons-react": "latest",
"class-variance-authority": "^0.7.1",
"classnames": "latest",
"clsx": "^2.1.1",
"howler": "latest",
"i18next": "^26.0.9",
"i18next-fs-backend": "^2.6.5",
"i18next-resources-to-backend": "^1.2.1",
"lucide-react": "^1.14.0",
"luxon": "latest",
"next": "16.2.5",
"react": "latest",
"react-dom": "latest",
"react-i18next": "^17.0.6",
"swr": "latest",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"uuid": "latest"
},
"devDependencies": {
"@playwright/test": "latest",
"@tailwindcss/postcss": "latest",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@types/howler": "latest",
"@types/luxon": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/uuid": "latest",
"@vitejs/plugin-react": "latest",
"@vitest/coverage-v8": "latest",
"autoprefixer": "latest",
"jsdom": "^26.1.0",
"postcss": "latest",
"prettier": "latest",
"prettier-plugin-tailwindcss": "latest",
"tailwindcss": "latest",
"typescript": "latest",
"vitest": "latest"
}
}