-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
48 lines (48 loc) · 1.47 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
{
"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",
"type": "module",
"scripts": {
"test": "jest",
"test:housekeeping": "tsx src/housekeeping/start.ts",
"clean": "rm -rf ./dist",
"build": "esbuild --bundle --minify --keep-names --sourcemap --sources-content=false --target=node20 --platform=node --outfile=dist/lambda.js src/lambda.ts",
"zip": "tsx infrastructure/zip.ts",
"dist": "tsc && npm test && npm run build && npm run zip",
"deploy": "tsx infrastructure/deploy.ts",
"prepare": "husky install",
"stack": "tsx infrastructure/stack.ts"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.460.0",
"@aws-sdk/client-sts": "^3.460.0"
},
"devDependencies": {
"@atombrenner/cfn-stack": "^2.0.3",
"@aws-sdk/client-lambda": "^3.460.0",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.10.4",
"@tsconfig/node20": "^20.1.2",
"@types/adm-zip": "^0.5.0",
"@types/aws-lambda": "^8.10.97",
"@types/jest": "^29.2.3",
"@types/node": "^20.10.0",
"adm-zip": "^0.5.9",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"esbuild": "~0.23.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"prettier": "^3.0.1",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
}
}