-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1013 Bytes
/
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
{
"name": "testing-serverless",
"version": "0.1.0",
"bin": {
"testing-serverless": "bin/testing-serverless.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"test:cloud": "integ-runner --directory lib --parallel-regions eu-central-1",
"cdk": "cdk"
},
"devDependencies": {
"@aws-cdk/cli-lib-alpha": "^2.84.0-alpha.0",
"@aws-cdk/integ-runner": "^2.84.0-alpha.0",
"@aws-cdk/integ-tests-alpha": "^2.84.0-alpha.0",
"@raphaelmanke/aws-cdk-pipes-rfc": "^0.0.16",
"@shelf/jest-dynamodb": "^3.4.1",
"@types/aws-lambda": "^8.10.119",
"@types/jest": "29.5.2",
"@types/node": "20.3.1",
"aws-cdk": "2.84.0",
"esbuild": "^0.18.4",
"jest": "29.5.0",
"jest-dynalite": "^3.6.1",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.1.3"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.354.0",
"aws-cdk-lib": "2.84.0",
"constructs": "10.2.52",
"source-map-support": "0.5.21"
}
}