-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 KB
/
package.json
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": "whisper",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"start": "concurrently \"node server.js\" \"next start\"",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@formatjs/intl-localematcher": "^0.5.4",
"@mui/icons-material": "^5.16.0",
"@mui/material": "^5.15.20",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"form-data": "^4.0.0",
"multer": "1.4.5-lts.1",
"negotiator": "^0.6.3",
"next": "14.2.4",
"node-fetch": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-window": "^1.8.10",
"uuid": "^10.0.0",
"ws": "^8.17.1"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@types/negotiator": "^0.6.3",
"@types/node": "^20",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-window": "^1.8.8",
"@types/uuid": "^10.0.0",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"typescript": "^5"
}
}