-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 967 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
{
"name": "downtime-monitor",
"version": "1.0.0",
"description": "A simple uptime checker",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "npx nodemon app.js"
},
"keywords": [
"uptime",
"checker"
],
"author": "Mahabub Sunny",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"handlebars": "^4.7.8",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mongoose": "^8.7.0",
"node-device-detector": "^2.1.4",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.15"
},
"_moduleAliases": {
"@configs": "./configs",
"@controllers": "./controllers",
"@libs": "./libs",
"@models": "./models",
"@routes": "./routes",
"@services": "./services",
"@template": "./template",
"@utils": "./utils"
}
}