-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.18 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
{
"name": "debridui",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0-or-later",
"author": "Adnan Ahmad <viperadnan@gmail.com>",
"description": "A modern debrid client with built-in media discovery and streaming.",
"keywords": [
"debrid",
"client",
"nextjs",
"tailwindcss",
"typescript"
],
"homepage": "https://debridui.viperadnan.com",
"repository": {
"type": "git",
"url": "https://github.com/viperadnan-git/debridui"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node .next/standalone/server.js",
"postbuild": "cp -r .next/static .next/standalone/.next/static && cp -r public .next/standalone/public",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format --write",
"format:check": "biome format",
"check": "biome check",
"check:fix": "biome check --write",
"typecheck": "tsc --noEmit",
"verify": "bun run typecheck && bun run check",
"update": "bunx next upgrade && bun update",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@bprogress/next": "^3.2.12",
"@hookform/resolvers": "^5.4.0",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-query-persist-client": "^5.101.0",
"better-auth": "^1.6.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"drizzle-orm": "^0.45.2",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"embla-carousel-wheel-gestures": "^8.1.0",
"fuse.js": "^7.4.2",
"idb-keyval": "^6.2.5",
"lucide-react": "^0.539.0",
"next": "16.2.9",
"next-themes": "^0.4.6",
"postgres": "^3.4.9",
"radix-ui": "^1.5.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-dropzone": "^14.4.1",
"react-hook-form": "^7.79.0",
"react-window": "^1.8.11",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"uuid": "^13.0.2",
"vaul": "^1.1.2",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@tailwindcss/postcss": "^4.3.1",
"@types/node": "^20.19.43",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@types/react-window": "^1.8.8",
"babel-plugin-react-compiler": "^1.0.0",
"drizzle-kit": "^0.31.10",
"shadcn": "^3.8.5",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
},
"nizm": {
"hooks": {
"biome": {
"cmd": "bunx biome check --write --no-errors-on-unmatched {staged_files}"
},
"lint": {
"cmd": "bun run lint"
}
}
},
"overrides": {
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3"
}
}