-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.81 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.81 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
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
73
74
{
"name": "vcmail",
"version": "1.0.0",
"description": "Standalone email server setup with AWS and Firebase. Run 'npm run vcmail' to set up your mail server infrastructure.",
"main": "lib/setup.js",
"bin": {
"vcmail": "./bin/vcmail.js"
},
"scripts": {
"vcmail": "node bin/vcmail.js",
"build": "vite build",
"preview": "vite preview",
"deploy-rules": "node scripts/deploy-database-rules.js",
"cleanup-old-resources": "node scripts/cleanup-old-resources.js"
},
"dependencies": {
"@aws-sdk/client-api-gateway": "^3.758.0",
"@aws-sdk/client-cloudfront": "^3.758.0",
"@aws-sdk/client-cloudwatch-logs": "^3.758.0",
"@aws-sdk/client-lambda": "^3.758.0",
"@aws-sdk/client-route-53": "^3.758.0",
"@aws-sdk/client-s3": "^3.758.0",
"@aws-sdk/client-ses": "^3.758.0",
"@aws-sdk/client-ssm": "^3.758.0",
"@aws-sdk/s3-request-presigner": "^3.758.0",
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"execa": "^5.1.1",
"firebase-admin": "^11.11.0",
"fs-extra": "^11.1.1",
"inquirer": "^9.2.12",
"jsonwebtoken": "^9.0.2",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"serverless-plugin-include-dependencies": "^6.1.1",
"terser": "^5.44.1",
"vite": "^5.4.21",
"vite-plugin-static-copy": "^1.0.6"
},
"keywords": [
"email",
"mail-server",
"aws",
"terraform",
"firebase",
"ses",
"route53",
"lambda",
"webmail",
"vcmail",
"email-infrastructure"
],
"author": "VCMail Team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/oceanseth/VCMail.git"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"lib/",
"templates/",
"api/",
"src/",
"index.html",
"README.md",
"LICENSE"
]
}