-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 829 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 829 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
{
"name": "video-processor",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "tsc-watch --onSuccess \"node app.js\"",
"client": "ts-node client.ts",
"build": "tsc app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "abinash phulkonwar",
"license": "ISC",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@redis/client": "^1.3.0",
"bullmq": "^2.4.0",
"fluent-ffmpeg": "^2.1.2",
"redis": "^4.3.1",
"sharp": "^0.31.1"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.20",
"@types/node": "^18.11.5",
"@types/sharp": "^0.31.0",
"dotenv": "^16.0.3",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-watch": "^5.0.3"
}
}