-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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": "@vothub/media-converter-api",
"version": "0.2.0",
"description": "File conversion HTTP service.",
"main": "bin/api.js",
"bin": {
"vhmc": "bin/api.js",
"vhmc-worker": "bin/worker.js"
},
"scripts": {
"start": "concurrently \"npm run start:api\" \"npm run start:worker\"",
"dev": "concurrently \"npm run dev:api\" \"npm run dev:worker\"",
"start:api": "node -r dotenv/config ./bin/api.js",
"start:worker": "node -r dotenv/config ./bin/worker.js",
"dev:api": "npx nodemon -r dotenv/config ./bin/api.js",
"dev:worker": "npx nodemon -r dotenv/config ./bin/worker.js",
"lint": "eslint .",
"test": "mocha **/*.spec.js"
},
"keywords": [],
"author": "Vot",
"license": "MIT",
"dependencies": {
"async": "^2.4.1",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"busboy": "^0.2.14",
"concurrently": "^6.0.0",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"express": "^4.15.3",
"ffbinaries": "^1.0.2",
"fluent-ffmpeg": "^2.1.2",
"hbs": "^4.0.1",
"lodash": "^4.17.4",
"pg": "^8.5.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0"
}
}