-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.39 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
44
45
46
{
"name": "video-maker",
"version": "1.0.0",
"description": "Projeto para fazer videos automatizados",
"main": "index.js",
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js --host 0.0.0.0 --disable-host-check",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luanadriani/video-maker.git"
},
"author": "Luan Adriani",
"license": "ISC",
"bugs": {
"url": "https://github.com/luanadriani/video-maker/issues"
},
"homepage": "https://github.com/luanadriani/video-maker#readme",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@ffprobe-installer/ffprobe": "^1.0.12",
"@google-cloud/text-to-speech": "^2.0.2",
"algorithmia": "^0.3.10",
"body-parser": "^1.19.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"fluent-ffmpeg": "^2.1.2",
"gm": "^1.23.1",
"googleapis": "^45.0.0",
"ibm-watson": "^5.2.0",
"image-downloader": "^3.5.0",
"imagemagick": "^0.1.3",
"mp3-duration": "^1.1.0",
"readline-sync": "^1.4.10",
"sbd": "^1.0.16",
"videoshowlas": "^0.1.12"
},
"devDependencies": {
"concurrently": "^5.0.2",
"nodemon": "^2.0.2"
}
}