-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 961 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 961 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
37
{
"name": "serverless-spy-example",
"version": "0.1.0",
"bin": {
"serverless-spy-example": "bin/serverless-spy-example.js"
},
"scripts": {
"build": "tsc",
"deploy": "cdk deploy --outputs-file cdkOutput.json",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"sspy": "sspy --cdkoutput cdkOutput.json"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.106",
"@types/jest": "^29.1.1",
"@types/node": "16.11.7",
"@types/prettier": "2.7.1",
"@types/uuid": "^8.3.4",
"jest": "^29.1.2",
"serverless-spy": "^2.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~4.8.4"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.533.0",
"@aws-sdk/client-lambda": "^3.533.0",
"@aws-sdk/client-sqs": "^3.533.0",
"@aws-sdk/lib-dynamodb": "^3.533.0",
"aws-cdk-lib": "2.133.0",
"constructs": "^10.3.0",
"esbuild": "^0.19.4",
"uuid": "^9.0.0"
}
}