-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 723 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 723 Bytes
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
{
"name": "aws-email-forwarder-cdk",
"version": "1.0.0",
"description": "AWS CDK pour le transfert d'emails avec SES - basé sur le tutoriel AWS",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0",
"aws-cdk": "^2.110.0",
"ts-node": "^10.9.0"
},
"dependencies": {
"aws-cdk-lib": "^2.110.0",
"@seeebiii/ses-email-forwarding": "^5.0.2",
"constructs": "^10.3.0",
"source-map-support": "^0.5.21"
},
"engines": {
"node": ">=18.0.0"
},
"author": "",
"license": "MIT"
}