-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 857 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 857 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
{
"name": "@aws-doc-sdk-examples/aurora_serverless_app",
"version": "1.0.0",
"description": "A REST API that uses the AWS SDK for JavaScript (v3) to track work items in Amazon Aurora and sends email reports with Amazon Simple Email Service (Amazon SES).",
"type": "module",
"main": "build/index.js",
"scripts": {
"test": "vitest run unit",
"start": "node ./watch.js"
},
"author": "corepyle@amazon.com",
"license": "Apache-2.0",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/mimetext": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vitest": "^1.6.0"
},
"dependencies": {
"@aws-sdk/client-rds-data": "^3.190.0",
"@aws-sdk/client-ses": "^3.193.0",
"cors": "^2.8.5",
"express": "^5.0.0",
"mimetext": "^2.0.10",
"prettier": "^2.7.1",
"uuid": "^14.0.0"
}
}