-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 862 Bytes
/
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
{
"name": "my-email-workflow",
"version": "1.0.0",
"private": true,
"template": "https://github.com/sawyerh/aws-email-workflow-starter",
"bin": {
"aws-app": "bin/aws-app.js"
},
"scripts": {
"check-types": "tsc --noEmit",
"test": "jest",
"test-watch": "jest --watch",
"deploy": "cdk deploy --all",
"diff": "cdk diff"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.109",
"@types/jest": "^29.2.4",
"@types/mailparser": "^3.4.0",
"@types/node": "^18.11.15",
"aws-cdk": "^2.60.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.245.0",
"aws-cdk-lib": "^2.60.0",
"constructs": "^10.0.0",
"dotenv": "^16.0.3",
"mailparser": "^3.6.3",
"source-map-support": "^0.5.21"
}
}