This repository was archived by the owner on Jul 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.41 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.41 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
74
75
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run && pnpm exec playwright test --trace on",
"populate": "pnpm exec vitest run populate.spec.ts",
"upload-assets": "tsx scripts/asset-upload.ts"
},
"dependencies": {
"@headlessui/react": "^1.7.19",
"@headlessui/tailwindcss": "^0.2.0",
"@heroicons/react": "^2.1.3",
"@hookform/resolvers": "^3.9.1",
"@internationalized/date": "^3.6.0",
"@nextui-org/react": "^2.4.8",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-toast": "^1.2.2",
"@react-aria/i18n": "^3.12.4",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.5.0",
"@supabase/supabase-js": "^2.42.7",
"@tanstack/react-query": "^5.62.11",
"axios": "^1.6.8",
"camelcase-keys": "^9.1.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.535.0",
"mime": "^4.0.4",
"motion": "^11.15.0",
"next": "14.2.18",
"react": "^18",
"react-dom": "^18",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"shadcn": "^2.1.0",
"snakecase-keys": "^8.0.1",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.46.0",
"@tanstack/eslint-plugin-query": "^5.62.9",
"@testing-library/react": "^15.0.5",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.18",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.0",
"jsonwebtoken": "^9.0.2",
"msw": "^2.3.1",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"ts-postgres": "^2.0.4",
"tsx": "^4.19.0",
"typescript": "^5",
"vitest": "^1.6.0"
}
}