-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.22 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.22 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
{
"name": "cinextma",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"sb-start": "supabase start --debug --ignore-health-check",
"sb-stop": "supabase stop --debug --all",
"sb-restart": "supabase stop --debug --all && supabase start --debug --ignore-health-check",
"sb-db-reset": "supabase db reset",
"sb-db-types": "supabase gen types typescript --local > src/utils/supabase/types.ts"
},
"dependencies": {
"@bprogress/next": "^3.2.12",
"@ducanh2912/next-pwa": "^10.2.9",
"@heroui/react": "^2.8.3",
"@hookform/resolvers": "^5.2.1",
"@mantine/hooks": "^8.2.4",
"@marsidev/react-turnstile": "^1.3.0",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.56.0",
"@t3-oss/env-nextjs": "^0.13.8",
"@tanstack/react-query": "^5.85.3",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.23.12",
"next": "16.1.6",
"next-themes": "^0.4.6",
"nuqs": "^2.4.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.62.0",
"react-icons": "^5.5.0",
"react-intersection-observer": "^9.16.0",
"react-share": "^5.2.2",
"string-ts": "^2.2.1",
"tailwindcss-motion": "^1.1.1",
"tmdb-ts": "^2.0.2",
"use-long-press": "^3.3.0",
"vaul": "^1.1.2",
"yet-another-react-lightbox": "^3.25.0",
"zod": "^4.1.1"
},
"devDependencies": {
"@iconify/react": "^6.0.0",
"@tailwindcss/postcss": "^4.1.12",
"@tanstack/react-query-devtools": "^5.85.3",
"@types/node": "^20",
"@types/react": "19.2.11",
"@types/react-dom": "19.2.3",
"eslint": "^9.33.0",
"eslint-config-next": "16.1.6",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.12",
"typescript": "^5",
"webpack": "^5.101.2"
},
"prettier": {
"proseWrap": "never",
"printWidth": 100,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"overrides": {
"@types/react": "19.2.11",
"@types/react-dom": "19.2.3"
}
}