-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 867 Bytes
/
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
{
"name": "youtube-trimmer",
"version": "1.0.0",
"description": "",
"source": "www/index.js",
"scripts": {
"web": "parcel watch --dist-dir www/build",
"web:build": "parcel build --dist-dir www/build --no-source-maps",
"dev": "nodemon src/server/app.js",
"start": "node src/server/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ffmpeg/core": "^0.12.6",
"@ffmpeg/ffmpeg": "^0.12.10",
"@ffmpeg/util": "^0.12.1",
"cors": "^2.8.5",
"execa": "^7.1.1",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.1",
"slugify": "^1.6.6",
"youtube-dl-exec": "^2.4.6",
"yt-player": "^3.6.1"
},
"devDependencies": {
"events": "^3.3.0",
"nodemon": "^3.0.1",
"parcel": "^2.9.3"
}
}