-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.79 KB
/
package.json
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
{
"name": "trancify",
"description": "The ultimate music player for trance and progressive lovers, delivering seamless beats and immersive soundscapes",
"version": "1.0.0",
"type": "module",
"private": true,
"author": {
"name": "Jakub Jirous <[email protected]>"
},
"keywords": [
"nextjs",
"react",
"typescript",
"supabase",
"tailwind",
"music player",
"supabase storage",
"shadcn-ui",
"spotify-clone"
],
"repository": {
"type": "git",
"url": "https://github.com/jakubjirous/trancify.git"
},
"license": "MIT",
"scripts": {
"dev": "next dev --turbo",
"build": "npx prisma generate && next build",
"start": "next start",
"lint": "bunx biome lint --write --unsafe ./src ",
"format": "bunx biome format --write ./src",
"db:generate": "npx prisma generate",
"db:migrate": "npx prisma migrate dev",
"db:seed": "npx tsx src/lib/db/seed.ts",
"db:enhance": "npx tsx src/lib/db/enhance-metadata.ts",
"db:studio": "prisma studio"
},
"dependencies": {
"@ai-sdk/google": "^0.0.51",
"@prisma/client": "5.21.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"@tailwindcss/postcss": "^4.0.0-alpha.26",
"ai": "^3.4.9",
"autoprefixer": "10.4.17",
"babel-plugin-react-compiler": "^0.0.0-experimental-fa06e2c-20241014",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"dotenv": "^16.4.5",
"geist": "^1.3.1",
"lucide-react": "^0.447.0",
"music-metadata": "^10.5.0",
"next": "15.0.0-rc.1",
"next-themes": "^0.3.0",
"postcss": "8.4.33",
"prettier": "^3.3.3",
"react": "19.0.0-rc-cd22717c-20241013",
"react-dom": "19.0.0-rc-cd22717c-20241013",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "^1.1.6",
"typescript": "5.3.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@paralleldrive/cuid2": "^2.2.2",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"prisma": "^5.21.1"
},
"prisma": {
"schema": "src/lib/db/schema.prisma"
},
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}