-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "smtp_email_aggregator_relay",
"version": "1.0.0",
"description": "",
"engines": {
"node": "16.x"
},
"main": "./src/server.js",
"scripts": {
"start": "node ./src/server.js",
"play": "ts-node ./src/play.ts",
"start:server": "ts-node ./src/server.ts",
"start:server:nodemon": "./node_modules/nodemon/bin/nodemon.js",
"build": "tsc",
"test-relay": "node ./tests/relay.js",
"tail-debug": "tail -f logs/debug.log"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/mailparser": "^3.4.0",
"@types/smtp-server": "^3.5.7",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"imap-server": "^0.0.1",
"mailparser": "^3.4.0",
"nodemailer": "^6.7.1",
"smtp-server": "^3.9.0",
"winston": "^3.3.3",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/node": "^16.11.6",
"nodemon": "^2.0.14",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}