-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 752 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 752 Bytes
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": "nodejselastictranscoder",
"version": "1.0.0",
"description": "AWS Elastic Transcoder implementation in NodeJs",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"nodejs",
"aws",
"elastic-encoder"
],
"author": "Shivam V.",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.918.0",
"bullmq": "^1.31.0",
"colors": "^1.4.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-validator": "^6.11.1",
"ioredis": "^4.27.4",
"mongodb": "^3.6.9",
"mongoose": "^5.12.12",
"morgan": "^1.10.0",
"slugify": "^1.5.3"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}