-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 855 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 855 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
{
"name": "stt-benchmark",
"version": "1.0.0",
"description": "Speech-to-Text benchmark UI for comparing open-source STT models",
"main": "dist/backend/server.js",
"scripts": {
"build": "tsc",
"dev": "ts-node backend/server.ts",
"start": "node dist/backend/server.js",
"build:frontend": "tsc --project tsconfig.frontend.json"
},
"dependencies": {
"@types/adm-zip": "^0.5.8",
"adm-zip": "^0.5.17",
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"express": "^4.18.2",
"multer": "^2.1.1",
"pidusage": "^3.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^2.1.0",
"@types/node": "^20.19.39",
"@types/pidusage": "^2.0.5",
"@types/uuid": "^9.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}