This repository has been archived by the owner on May 25, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
43 lines (43 loc) · 1.64 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
{
"name": "watchvideobylink",
"version": "1.0.0",
"description": "WatchVideoByLink takes a public video URL and displays the video in a video player that has features which makes watching the provided video an enjoyable process.",
"main": "server.js",
"scripts": {
"start": "node server",
"electron": "electron ./backend/setup/deploy-electron",
"build": "node ./backend/setup/build.js",
"build-database-available-videos": "node ./backend/setup/build-database-available-videos.js",
"build-database-current-download-videos": "node ./backend/setup/build-database-current-download-videos.js",
"build-database-data-videos": "node ./backend/setup/build-database-data-videos.js",
"build-database-user-settings": "node ./backend/setup/build-database-user-settings.js",
"build-untrunc-setup": "node ./backend/setup/build-untrunc-setup.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MohamedBakoush/WatchVideoByLink.git"
},
"author": "Mohamed Bakoush",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MohamedBakoush/WatchVideoByLink/issues"
},
"homepage": "https://github.com/MohamedBakoush/WatchVideoByLink#readme",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^1.4.1",
"express": "^4.18.2",
"express-fileupload": "^1.2.1",
"fluent-ffmpeg": "^2.1.2",
"serve-favicon": "^2.5.0",
"uuid": "^8.3.2",
"youtube-dl-exec": "^2.0.3"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
"electron": "^22.0.0",
"eslint": "^7.18.0",
"jest": "^27.0.6"
}
}