-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"name": "MiniMailer",
"packageManager": "yarn@4.9.2",
"type": "module",
"version": "1.1.0",
"description": "MiniMailer is a simple SMTP server that forwards mail over HTTP to Mailgun, Postmark, or MailerSend.",
"author": "Nuovar LLC",
"license": "MIT",
"homepage": "https://github.com/NuovarDev/MiniMailer",
"repository": {
"type": "git",
"url": "https://github.com/NuovarDev/MiniMailer.git"
},
"bugs": {
"url": "https://github.com/NuovarDev/MiniMailer/issues"
},
"keywords": [
"smtp",
"mail",
"relay"
],
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "npx tsx src/index.ts",
"test:e2e": "npx tsx scripts/test-e2e.ts",
"docker:build": "docker build -t minimailer .",
"docker:run": "docker run -p 25:25 -p 2525:2525 -p 587:587 -p 80:80 minimailer"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@types/smtp-server": "^3",
"dotenv": "^17.4.0",
"mailslurp-client": "^17.2.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
},
"dependencies": {
"form-data": "^4.0.0",
"pino": "^10.3.1",
"postal-mime": "^2.7.3",
"smtp-server": "^3.18.1",
"undici": "^7.22.0"
}
}