-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.67 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.67 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
{
"name": "ffmpeg-service",
"version": "1.3.0",
"description": "A comprehensive FFmpeg HTTP service with GPU hardware acceleration (H.264 + VP9)",
"main": "ffmpeg-service.mjs",
"type": "module",
"scripts": {
"start": "node ffmpeg-service.mjs",
"server": "node ffmpeg-service.mjs",
"client": "vite",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "vite build",
"test": "echo \"Error: no test specified\" && exit 1",
"test:gpu": "node test-gpu.mjs",
"benchmark": "node benchmark-gpu.mjs"
},
"keywords": [
"ffmpeg",
"video",
"converter",
"api",
"docker",
"react"
],
"author": "",
"license": "ISC",
"dependencies": {
"adm-zip": "^0.5.16",
"axios": "^1.13.2",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"lucide-react": "^0.562.0",
"multer": "^1.4.5-lts.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"swagger-ui-express": "^5.0.1",
"tailwind-merge": "^3.4.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4.1.18",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.23",
"concurrently": "^8.2.2",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"vite": "^5.4.11"
}
}