-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.82 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "mailthat",
"version": "0.0.1",
"description": "MailThat is a kind of proxy/service to forward mails from HTTP-Requests or received via SMTP.",
"main": "dist",
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/index.js",
"start:dev": "cross-env NODE_ENV=development nodemon",
"start:mailserver": "docker-compose -f docker/dc-maildev.yml up -d",
"docker:build": "docker build -f docker/Dockerfile . -t mailthat",
"docker:run": "docker run -it --rm -v $(pwd)/config:/config mailthat",
"check:versions": "npx npm-check-updates",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"sort:packages": "npx sort-package-json"
},
"dependencies": {
"@koa/router": "^10.0.0",
"dotenv": "^8.2.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-helmet": "^6.1.0",
"mailparser": "^3.2.0",
"nodemailer": "^6.5.0",
"smtp-server": "^3.8.0",
"tslog": "^3.2.0",
"zod": "^3.0.0-alpha.4"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/koa": "^2.13.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^6.0.2",
"@types/koa__router": "^8.0.4",
"@types/mailparser": "^3.0.2",
"@types/node": "^14.14.41",
"@types/nodemailer": "^6.4.1",
"@types/smtp-server": "^3.5.6",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cross-env": "^7.0.3",
"dotenv-cli": "^4.0.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}