-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.6 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
{
"name": "streaming",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"__dev": "concurrently \"next dev --turbopack\" \"tsx ./server/queues/index.ts\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"queue:run": "tsx ./server/queues/index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.717.0",
"@aws-sdk/cloudfront-signer": "^3.709.0",
"@aws-sdk/s3-request-presigner": "^3.717.0",
"@libsql/client": "^0.14.0",
"@mantine/core": "^7.14.0",
"@types/video.js": "^7.3.58",
"bullmq": "^5.26.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"concurrently": "^9.1.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.1",
"fluent-ffmpeg": "^2.1.3",
"ioredis": "^5.4.1",
"lucide": "^0.456.0",
"lucide-react": "^0.456.0",
"next": "15.0.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "^14.3.5",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"video.js": "^8.19.1",
"videojs-contrib-dash": "^5.1.1"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"drizzle-kit": "^0.28.1",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5"
},
"packageManager": "pnpm@9.15.0"
}