-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "video-sharing-server",
"version": "1.0.0",
"description": "Video sharing server",
"main": "server.js",
"scripts": {
"dev": "ts-node src/server.ts",
"start": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"author": "Omkar D",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.669.0",
"@aws-sdk/lib-storage": "^3.669.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.2",
"@google/generative-ai": "^0.21.0",
"@tus/file-store": "^1.5.1",
"@tus/server": "^1.10.1",
"assemblyai": "^4.8.0",
"aws-sdk": "^2.1691.0",
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"fix-webm-duration": "^1.0.6",
"fluent-ffmpeg": "^2.1.3",
"hound": "^1.0.5",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.7",
"openai": "^4.67.3",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.1",
"tus-node-server": "^0.9.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^20.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}