-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
117 lines (117 loc) · 3.72 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "flowify",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"bun:build": "bun --bun next build",
"db:push": "dotenv drizzle-kit push:pg",
"db:push:prod": "dotenv -e .env.prod.local drizzle-kit push:pg",
"db:studio": "dotenv drizzle-kit studio",
"db:studio:prod": "dotenv -e .env.prod.local drizzle-kit studio",
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"bun:dev": "bun --bun next dev",
"lint": "biome lint . --diagnostic-level=error",
"lint:next": "next lint",
"format": "biome format --changed --write .",
"check": "biome check --apply ./src",
"start": "next start",
"start:worker": "dotenv -e .env bun ./worker/worker.ts",
"dev:worker": "bun run --watch ./worker/worker.ts"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.4.1",
"@bitpatty/imgproxy-url-builder": "^1.7.0",
"@hookform/resolvers": "^3.9.0",
"@neondatabase/serverless": "^0.9.4",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@sentry/nextjs": "^8.22.0",
"@sentry/react": "^8.22.0",
"@spotify/web-api-ts-sdk": "^1.2.0",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-table": "^8.19.2",
"@types/lodash": "^4.17.7",
"@types/spotify-api": "^0.0.25",
"@xyflow/react": "^12.0.4",
"bullmq": "^5.12.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"cronstrue": "^2.50.0",
"date-fns": "^3.6.0",
"drizzle-orm": "latest",
"html-to-image": "^1.11.11",
"ioredis": "^5.4.1",
"lodash": "^4.17.21",
"lucide-react": "^0.404.0",
"next": "^14.2.5",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.3.0",
"pg": "^8.12.0",
"postgres": "^3.4.4",
"radash": "^12.1.0",
"random-words": "^2.0.1",
"react": "18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "18.3.1",
"react-draggable": "^4.4.6",
"react-hook-form": "^7.52.1",
"react-resizable-panels": "^2.0.20",
"react-wrap-balancer": "^1.1.1",
"sharp": "^0.33.4",
"sonner": "^1.5.0",
"spotify-web-api-node": "^5.0.2",
"swr": "^2.2.5",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"validator": "^13.12.0",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@faker-js/faker": "^8.4.1",
"@next/eslint-plugin-next": "^14.2.4",
"@types/bun": "^1.1.6",
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/spotify-web-api-node": "^5.0.11",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.12.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"autoprefixer": "^10.4.19",
"dotenv-cli": "^7.4.2",
"drizzle-kit": "^0.23.1",
"eslint": "^8.57.0",
"express": "^4.19.2",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.6",
"typescript": "^5.5.3"
},
"ct3aMetadata": {
"initVersion": "7.25.0"
}
}