forked from ReachFive/fake-smtp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.52 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
64
65
66
67
68
69
70
71
72
{
"name": "fake-smtp-server",
"version": "0.8.1",
"description": "Fake SMTP Server for email testing",
"author": "Formbird",
"license": "MIT",
"homepage": "https://github.com/formbird/fake-smtp-server",
"bugs": {
"url": "https://github.com/formbird/fake-smtp-server/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/formbird/fake-smtp-server.git"
},
"keywords": [
"smtp",
"development",
"test",
"fake",
"dummy",
"mock",
"email",
"e-mail",
"automated",
"integration",
"ci"
],
"main": "index.js",
"bin": {
"fake-smtp-server": "./index.js"
},
"type": "module",
"dependencies": {
"cli": "1.0.1",
"express": "4.18.2",
"express-basic-auth": "1.2.1",
"lodash": "^4.17.21",
"mailparser": "3.6.5",
"moment": "^2.29.4",
"smtp-server": "3.13.0"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vitejs/plugin-react": "^4.2.0",
"bootstrap": "^5.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-transition-group": "4.4.5",
"reactstrap": "9.2.1",
"vite": "^5.0.0"
},
"engines": {
"node": ">=8.5.0"
},
"files": [
"build"
],
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"docker:build": "docker build -t reachfive/fake-smtp-server ."
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}