forked from aws-samples/serverless-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 958 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
{
"name": "aws-dynamodb-lambda-scheduler-lambda-sample",
"version": "0.1.0",
"bin": {
"aws-dynamodb-lambda-scheduler-lambda-sample": "bin/aws-dynamodb-lambda-scheduler-lambda-sample.js"
},
"scripts": {
"init": "npm install && cd lambdas && npm install",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"deploy": "cdk deploy"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "18.11.18",
"aws-cdk": "2.80.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~4.9.4"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.294.0",
"@aws-sdk/client-scheduler": "^3.294.0",
"@aws-sdk/util-dynamodb": "^3.294.0",
"@aws-solutions-constructs/aws-apigateway-dynamodb": "^2.34.0",
"@types/aws-lambda": "^8.10.114",
"aws-cdk-lib": "2.80.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}