-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.12 KB
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
{
"name": "serverless-webapp-cdk-template",
"version": "1.0.0",
"description": "Reusable AWS CDK template for serverless web applications with Lambda, API Gateway, DynamoDB/Aurora, and S3",
"bin": {
"serverless-webapp-cdk": "bin/app.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"deploy": "npm run build && cdk deploy",
"deploy:all": "npm run build && cdk deploy --all",
"destroy": "cdk destroy",
"diff": "npm run build && cdk diff",
"synth": "npm run build && cdk synth"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"aws-cdk": "^2.201.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@aws-cdk/aws-lambda-python-alpha": "^2.201.0-alpha.0",
"aws-cdk-lib": "^2.201.0",
"constructs": "^10.4.2",
"source-map-support": "^0.5.21"
},
"keywords": [
"aws",
"cdk",
"serverless",
"lambda",
"api-gateway",
"dynamodb",
"aurora",
"s3"
],
"author": "Ronit Sachdev",
"license": "MIT"
}