forked from synox/void-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.25 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
58
59
60
61
62
63
{
"name": "void-mail",
"version": "0.0.1",
"private": false,
"scripts": {
"start": "node ./app.js",
"test": "xo",
"debug": "node --nolazy --inspect-brk=9229 ./app.js"
},
"dependencies": {
"array.prototype.flatmap": "^1.2.1",
"async-retry": "^1.2.3",
"compression": "^1.7.3",
"debug": "^2.6.9",
"express": "~4.16.0",
"express-validator": "^5.3.1",
"helmet": "^3.16.0",
"http-errors": "~1.6.2",
"imap-simple": "^4.3.0",
"lodash": "^4.17.13",
"mailparser": "^2.4.3",
"mem": "^4.2.0",
"mnemonist": "^0.27.2",
"moment": "^2.24.0",
"morgan": "~1.9.0",
"nodemailer": "^5.1.1",
"p-series": "^2.0.0",
"random-word": "^2.0.0",
"sanitize-html": "^1.20.0",
"socket.io": "^2.2.0",
"twig": "~0.10.3"
},
"devDependencies": {
"xo": "^0.24.0"
},
"xo": {
"semicolon": false,
"prettier": true,
"rules": {
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
},
"overrides": [
{
"files": "public/javascripts/*.js",
"esnext": false,
"env": [
"browser"
],
"globals": [
"io"
]
}
]
},
"engines": {
"node": "10.x"
}
}