-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "transcribe",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "node server.js -h 0.0.0.0 -p 8888",
"build": "next build",
"start": "NODE_ENV=production node server.js -h 0.0.0.0",
"next-dev": "next dev",
"lint": "next lint",
"server": "node server.js -p 5001",
"server:prod": "NODE_ENV=production node server.js -p 5001"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@hocuspocus/provider": "^3.2.3",
"@hocuspocus/server": "^3.2.3",
"@tailwindcss/typography": "^0.5.19",
"@tiptap/core": "^2.26.1",
"@tiptap/extension-collaboration": "^2.24.2",
"@tiptap/extension-collaboration-cursor": "^2.24.2",
"@tiptap/extension-document": "^2.24.2",
"@tiptap/extension-highlight": "^2.27.1",
"@tiptap/extension-link": "^2.27.1",
"@tiptap/extension-paragraph": "^2.24.2",
"@tiptap/extension-text": "^2.24.2",
"@tiptap/extension-underline": "^2.27.1",
"@tiptap/react": "^2.24.2",
"@tiptap/starter-kit": "^2.26.1",
"@types/turndown": "^5.0.6",
"@types/ws": "^8.18.1",
"diff": "^8.0.2",
"fluent-ffmpeg": "^2.1.3",
"https-proxy-agent": "^7.0.6",
"jotai": "^2.12.5",
"marked": "^17.0.1",
"next": "^15.3.6",
"node-fetch": "^3.3.2",
"openai": "^5.3.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"turndown": "^7.2.2",
"ws": "^8.18.3",
"y-prosemirror": "^1.3.7",
"y-protocols": "^1.0.6",
"yjs": "^13.6.27"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"tailwindcss": "^4",
"typescript": "^5"
}
}