-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 903 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 903 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
36
{
"name": "ecommerce",
"version": "0.1.0",
"bin": {
"ecommerce": "bin/ecommerce.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"clean": "cdk destroy --all",
"diff": "cdk diff",
"deploy": "cdk deploy --all --require-approval never"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.110",
"@types/jest": "^29.4.0",
"@types/node": "18.13.0",
"@types/uuid": "^9.0.0",
"aws-cdk": "2.73.0",
"aws-sdk": "^2.1357.0",
"jest": "^29.4.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
},
"dependencies": {
"aws-cdk-lib": "2.73.0",
"@aws-cdk/aws-apigatewayv2-alpha": "2.65.0-alpha.0",
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "2.65.0-alpha.0",
"aws-xray-sdk": "^3.4.1",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}