-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 897 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
36
37
{
"name": "mailer-lambda",
"version": "0.1.0",
"bin": {
"mailer-lambda": "bin/mailer-lambda.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk",
"cdk:deploy": "cdk deploy",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@bravo68web/eslint-config": "^1.2.2",
"@bravo68web/prettier-config": "^1.2.2",
"@bravo68web/tsconfig": "^1.2.2",
"@types/node": "20.10.4",
"@types/nodemailer": "^6.4.14",
"aws-cdk": "2.117.0",
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"dependencies": {
"@hono/node-server": "^1.3.3",
"aws-cdk-lib": "2.117.0",
"constructs": "^10.0.0",
"dotenv": "^16.3.1",
"hono": "^3.11.11",
"nodemailer": "^6.9.7",
"source-map-support": "^0.5.21",
"zod": "^3.22.4"
},
"packageManager": "[email protected]"
}