forked from cdk-patterns/serverless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 873 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": "the-state-machine",
"version": "0.1.0",
"bin": {
"the-state-machine": "bin/the-state-machine.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"deploy": "cdk deploy '*' --require-approval 'never'"
},
"devDependencies": {
"@aws-cdk/assert": "1.119.0",
"@types/jest": "^27.0.1",
"@types/node": "16.7.1",
"jest": "^27.0.6",
"ts-jest": "^27.0.5",
"aws-cdk": "1.119.0",
"ts-node": "^10.2.1",
"typescript": "~4.3.5"
},
"dependencies": {
"@aws-cdk/aws-apigatewayv2": "1.119.0",
"@aws-cdk/aws-iam": "1.119.0",
"@aws-cdk/aws-lambda": "1.119.0",
"@aws-cdk/aws-sqs": "1.119.0",
"@aws-cdk/aws-stepfunctions": "1.119.0",
"@aws-cdk/aws-stepfunctions-tasks": "1.119.0",
"@aws-cdk/core": "1.119.0",
"source-map-support": "^0.5.19"
}
}