forked from atombrenner/aws-lambda-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 757 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 757 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
32
33
34
35
{
"name": "aws-lambda-typescript",
"version": "1.0.0",
"description": "AWS Lambda with Typescript",
"license": "GPL-3.0-or-later",
"repository": "github:atombrenner/aws-lambda-typescript",
"scripts": {
"build": "tsup src/lambda.ts",
"deploy": "./deploy.sh"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"dependencies": {
"countries-and-timezones": "^3.6.0"
},
"devDependencies": {
"@aws-sdk/client-lambda": "^3.460.0",
"@types/aws-lambda": "^8.10.0",
"@types/node": "^20.10.0",
"prettier": "^3.0.1",
"prettier-plugin-jsdoc": "^1.3.0",
"tsup": "^8.0.2",
"typescript": "^5.3.2"
},
"overrides": {
"@ts-rest/express": {
"@ts-rest/core": "3.30.52"
},
"@ts-rest/open-api": {
"@ts-rest/core": "3.30.52"
}
}
}