-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "dev-sec-ops-example",
"version": "0.1.0",
"bin": {
"dev-sec-ops-example": "bin/dev-sec-ops-example.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "cdk synth --output cdk.out && jest",
"pipeline-test": "cdk synth --output cdk.out 2>&1 && jest test/pipeline-stack.test.ts",
"cdk": "cdk",
"nag": "NODE_ENV=TEST npx cdk synth 2>&1 | tee cdk-synth-errors.log && node parse-cdk-nag-output.js",
"pipeline-nag": "NODE_ENV=PIPELINE_NAG npx cdk synth"
},
"devDependencies": {
"@types/aws-sdk": "^0.0.42",
"@types/jest": "^29.5.12",
"@types/node": "20.14.9",
"aws-cdk": "2.155.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "~5.5.3"
},
"dependencies": {
"@aws-sdk/client-ecr": "^3.649.0",
"@michelangelo17/cdk-ecr-enhanced-scanning": "^1.2.1",
"aws-cdk-lib": "2.155.0",
"aws-sdk": "^2.1691.0",
"cdk-ecr-deployment": "^3.0.103",
"cdk-nag": "^2.28.195",
"constructs": "^10.0.0",
"js-yaml": "^4.1.0",
"source-map-support": "^0.5.21"
}
}