-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.54 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.54 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "lestly",
"private": true,
"type": "module",
"version": "1.0",
"scripts": {
"prebuild": "npm run typecheck",
"prebuild:local": "npm run typecheck:local && npm run db:typegen",
"build": "react-router build",
"dev": "NODE_OPTIONS='--import ./instrument.server.mjs' react-router dev",
"start": "react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:typegen": "supabase gen types typescript --project-id smbpzlzbvplhtpqggrjf > database.types.ts",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"format": "prettier --write \"app/**/*.{ts,tsx,js,jsx,json,css,md,mdx}\""
},
"dependencies": {
"@fullcalendar/daygrid": "^6.1.20",
"@fullcalendar/interaction": "^6.1.20",
"@fullcalendar/react": "^6.1.20",
"@fullcalendar/timegrid": "^6.1.20",
"@hcaptcha/react-hcaptcha": "^1.12.0",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.1.8",
"@react-email/components": "0.0.34",
"@react-router/node": "^7.5.1",
"@react-router/serve": "^7.5.1",
"@sentry/browser": "^9.6.1",
"@sentry/profiling-node": "^9.10.1",
"@sentry/react-router": "^9.10.1",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.1",
"@tosspayments/tosspayments-sdk": "^2.3.4",
"@vercel/og": "^0.6.5",
"@vercel/react-router": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.40.1",
"i18next": "^24.2.3",
"i18next-browser-languagedetector": "^8.0.4",
"i18next-fetch-backend": "^6.0.0",
"i18next-fs-backend": "^2.6.0",
"i18next-http-backend": "^3.0.2",
"i18next-resources-to-backend": "^1.2.1",
"input-otp": "^1.4.2",
"isbot": "^5.1.17",
"lucide-react": "^0.482.0",
"mdx-bundler": "^10.1.1",
"next-themes": "^0.4.6",
"nprogress": "^0.2.0",
"postgres": "^3.4.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-email": "4.0.2",
"react-i18next": "^15.4.1",
"react-router": "^7.5.1",
"react-turnstile": "^1.1.4",
"recharts": "^3.6.0",
"remix-i18next": "^7.1.0",
"remix-themes": "^2.0.4",
"resend": "^4.2.0",
"rrule": "^2.8.1",
"satori": "^0.12.2",
"sonner": "^2.0.1",
"supabase": "^2.1.1",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@playwright/test": "^1.51.1",
"@react-router/dev": "^7.5.1",
"@tailwindcss/vite": "^4.0.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20",
"@types/nprogress": "^0.2.3",
"@types/pg": "^8.11.11",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/uuid": "^11.0.0",
"drizzle-kit": "^0.30.5",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react-router-devtools": "^1.1.0",
"tailwindcss": "^4.0.17",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.4"
}
}