-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
78 lines (78 loc) · 2.31 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
73
74
75
76
77
78
{
"name": "maildog",
"version": "1.1.2",
"description": "Hosting your own email forwarding service on AWS and manage it with Github Actions",
"bin": {
"email-masking": "bin/email-masking.js"
},
"scripts": {
"prepare": "npx is-ci || husky install",
"type-checking": "tsc --noEmit",
"format-checking": "prettier --check .",
"encrypt-config": "gpg --symmetric --yes --cipher-algo AES256 maildog.config.json",
"decrypt-config": "gpg --batch --yes --decrypt --output maildog.config.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edmundhung/maildog.git"
},
"author": {
"name": "Edmund Hung",
"email": "[email protected]",
"url": "https://github.com/edmundhung"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/edmundhung/maildog/issues"
},
"homepage": "https://github.com/edmundhung/maildog#readme",
"devDependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"@aws-cdk/assert": "^1.108.1",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/aws-lambda": "^8.10.77",
"@types/jest": "^26.0.23",
"@types/node": "^14.17.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"execa": "^5.1.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"semantic-release": "^17.4.3",
"ts-jest": "^26.5.6"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,js,json,md,tsx,css}": "prettier --write"
},
"dependencies": {
"@aws-cdk/aws-cloudwatch": "^1.108.1",
"@aws-cdk/aws-iam": "^1.108.1",
"@aws-cdk/aws-lambda-nodejs": "^1.108.1",
"@aws-cdk/aws-s3": "^1.108.1",
"@aws-cdk/aws-ses": "^1.108.1",
"@aws-cdk/aws-ses-actions": "^1.108.1",
"@aws-cdk/aws-sns": "^1.108.1",
"@aws-cdk/aws-sns-subscriptions": "^1.108.1",
"@aws-cdk/core": "^1.108.1",
"aws-cdk": "^1.108.1",
"aws-lambda-ses-forwarder": "^5.0.0",
"aws-sdk": "^2.935.0",
"esbuild": "^0.12.8",
"jsonc-parser": "^3.0.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}