-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.27 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
{
"name": "youtube-transcript-extractor",
"version": "1.0.0",
"description": "ScribeSnap extracts transcripts from YouTube, Vimeo, TikTok, and more with AI tools",
"main": "server.js",
"scripts": {
"start": "node server.js",
"preserver": "lsof -ti :4999 | xargs kill -9 2>/dev/null || true",
"server": "PORT=4999 nodemon --watch server.js --watch .env -r dotenv/config server.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "cd client && npm install && npm run build",
"secrets:scan": "bash scripts/check-secrets.sh",
"clean": "rm -rf node_modules && cd client && rm -rf node_modules",
"reinstall": "npm run clean && npm install && cd client && npm install"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@supabase/supabase-js": "^2.97.0",
"@supadata/js": "^1.3.2",
"axios": "^1.3.4",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"form-data": "^4.0.0",
"groq-sdk": "^0.37.0",
"multer": "^2.1.1",
"resend": "^6.9.4",
"youtube-transcript": "^1.2.1"
},
"devDependencies": {
"concurrently": "^8.0.1",
"nodemon": "^3.1.14"
},
"engines": {
"node": ">=20.0.0"
}
}