-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 922 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
{
"name": "mailcow-status-tracker",
"version": "1.0.0",
"author": "Merijn van Wouden",
"license": "ISC",
"description": "Track delivery status of outgoing Mailcow emails by checking the Postfix logs through the Mailcow API.",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "NODE_ENV=development sh -c 'if command -v nodemon > /dev/null; then nodemon src/index.js; else node src/index.js; fi'"
},
"keywords": [
"mailcow",
"email",
"log",
"tracker",
"status",
"webhook",
"email-status",
"mail-logs",
"mailcow-api",
"log-tracker",
"postfix-tracker",
"postfix-status"
],
"dependencies": {
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.16",
"sqlite3": "^5.1.7"
}
}