-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1023 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
37
38
39
40
41
42
43
44
45
{
"name": "logger_backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon index.js",
"start": "NODE_ENV=PRODUCTION nodemon --delay 10 server.js index.js",
"test": "mocha",
"debug": "ndb index.js"
},
"resolutions": {
"graceful-fs": "^4.2.9"
},
"author": "DnD Technologies",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1181.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"decompress": "^4.2.1",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"html-to-text": "^8.2.0",
"jwt-redis": "^6.0.0",
"mongoose": "^6.0.5",
"morgan": "^1.10.0",
"multer": "^1.4.4-lts.1",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.12",
"pug": "^3.0.2",
"redis": "^3.1.2",
"vercel": "^28.18.2"
},
"devDependencies": {
"mocha": "^10.0.0",
"ndb": "^1.1.5",
"supertest": "^6.2.4"
},
"engines": {
"node": "14.x"
}
}