-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "bits-aws-task",
"version": "0.1.0",
"bin": {
"bits-aws-task": "bin/bits-aws-task.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"test:unit": "jest src/core utils",
"test:integration": "jest src/handlers",
"cdk": "cdk",
"localstack:bootstrap": "cdklocal bootstrap aws://000000000000/eu-west-2",
"localstack:deploy": "cdklocal deploy BitsAwsTaskLocalStackStack --profile localstack",
"aws:bootstrap": "cdk bootstrap",
"aws:deploy": "cdk deploy BitsAwsTaskStack"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.140",
"@types/jest": "^29.5.5",
"@types/node": "20.6.3",
"aws-cdk": "2.97.0",
"aws-sdk-client-mock": "^4.0.1",
"aws-sdk-client-mock-jest": "^4.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"dependencies": {
"@aws-sdk/client-api-gateway": "^3.608.0",
"@aws-sdk/client-dynamodb": "^3.606.0",
"@aws-sdk/lib-dynamodb": "^3.606.0",
"aws-cdk-lib": "2.97.0",
"aws-cdk-local": "^2.18.0",
"aws-lambda": "^1.0.7",
"axios": "^1.7.2",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}