-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 894 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 894 Bytes
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
{
"name": "realtime-titling",
"version": "1.0.0",
"description": "Real-time speech-to-text and translation service for conferences",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest",
"frontend": "cd frontend && npm start",
"frontend-build": "cd frontend && npm run build"
},
"keywords": [
"speech-to-text",
"translation",
"real-time",
"websocket",
"conference",
"subtitles"
],
"author": "Vladimir Lelicanin",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"ws": "^8.14.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"uuid": "^9.0.1",
"@google-cloud/speech": "^6.0.1",
"openai": "^4.20.1",
"axios": "^1.6.2"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0"
},
"engines": {
"node": ">=18.0.0"
}
}