-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 911 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 911 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
{
"name": "step-functions-example",
"version": "0.1.0",
"bin": {
"step-functions-examples": "bin/step-functions-example.js"
},
"scripts": {
"build": "npm run clean:dist && npm run tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"tsc": "tsc",
"clean:dist": "rm -rf ./dist",
"deploy": "npm run cdk -- deploy --all --require-approval never",
"destroy": "npm run cdk -- destroy --all"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "22.7.9",
"aws-cdk": "2.173.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3"
},
"dependencies": {
"@types/aws-lambda": "^8.10.146",
"@types/aws-sdk": "^0.0.42",
"@aws-sdk/client-s3": "^3.715.0",
"aws-cdk-lib": "2.173.2",
"constructs": "^10.4.2",
"esbuild": "^0.24.0",
"source-map-support": "^0.5.21"
}
}