-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.04 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ffmpeg-docker",
"version": "1.0.0",
"description": "FFmpeg compiled in a docker container with an API for control",
"main": "index.js",
"scripts": {
"development": "nodemon index",
"production": "node index",
"docs": "node ./utils/markdown && swagger-markdown --force-version 2 -i ./docs/assets/api-spec.yml -o ./docs/pages/usage/endpoints.md"
},
"author": "Ryan McCartney",
"license": "GPLv3",
"dependencies": {
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.1",
"chart.js": "^4.4.0",
"check-disk-space": "^3.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.1.4",
"express-validator": "^7.0.1",
"fluent-ffmpeg": "^2.1.2",
"gaugeJS": "^1.3.7",
"helmet": "^5.0.1",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"md5": "^2.3.0",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mustache": "^4.2.0",
"mustache-express": "^1.3.2",
"nanoid": "^4.0.0",
"node-cache": "^5.1.2",
"node-gyp": "^9.4.0",
"ntp-time": "^2.0.2",
"os": "^0.1.2",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pidusage": "^3.0.2",
"qrcode": "^1.5.3",
"serve-favicon": "^2.5.0",
"sharp": "^0.32.6",
"swagger-jsdoc": "^6.0.2",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2",
"validator": "^13.11.0",
"video.js": "^8.6.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"winston-mongodb": "^5.0.7",
"yaml": "^2.3.1"
},
"optionalDependencies": {
"macadam": "^2.0.18"
},
"devDependencies": {
"nodemon": "^2.0.22",
"swagger-markdown": "^2.3.0"
},
"nodemonConfig": {
"ignore": [
"./public/*",
"./data/*",
"./docs/*"
]
},
"_moduleAliases": {
"@root": ".",
"@bin": "./bin/",
"@routes": "./routes/",
"@utils": "./utils/",
"@services": "./services/",
"@validators": "./validators/"
}
}