-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 857 Bytes
/
package.json
File metadata and controls
26 lines (26 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
{
"name": "aws-node-http-api-typescript-project",
"description": "This template demonstrates how to make a simple HTTP API with Node.js and Typescript running on AWS Lambda and API Gateway using the Serverless Framework v3",
"version": "1.0.0",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test-win": "SET NODE_OPTIONS=--experimental-vm-modules && jest"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.496.0",
"i18n": "^0.15.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.131",
"@types/i18n": "^0.13.10",
"@types/jest": "^29.5.11",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"serverless": "^3.21.0",
"serverless-offline": "^9.1.6",
"serverless-plugin-typescript": "^2.1.2",
"ts-jest": "^29.1.1",
"typescript": "^4.7.4"
}
}