-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 905 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
35
36
{
"name": "youtubeconverter",
"version": "1.0.0",
"description": "",
"engines": {
"node": "12.18.2",
"npm": "6.14.5"
},
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "parcel public/index.html",
"build": "parcel build public/index.html"
},
"heroku-postbuild": "parcel build public/index.html",
"author": "Jheno Cerbito",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"discord-ytdl-core": "^5.0.4",
"dotenv": "^10.0.0",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"ffmpeg-static": "^4.4.0",
"fluent-ffmpeg": "^2.1.2",
"nodemailer": "^6.6.3",
"nodemailer-smtp-transport": "^2.7.4",
"pretty-bytes": "^5.6.0",
"progress": "^2.0.3",
"ytdl-core": "^4.8.2"
},
"devDependencies": {
"parcel-bundler": "^1.12.5"
}
}