-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.66 KB
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
{
"name": "cdkrd-verification",
"version": "0.1.0",
"private": true,
"description": "cdk-real-drift (cdkrd) vs cdk drift comparison verification",
"packageManager": "pnpm@11.9.0",
"scripts": {
"build": "tsc --noEmit",
"synth": "cdk synth CdkrdVerification-local --context suffix=local --context experimentId=local-synth --context expiresAt=2099-01-01 --context owner=local --context account=123456789012 --context region=ap-northeast-1",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"deploy": "bash scripts/deploy.sh",
"destroy": "bash scripts/destroy.sh",
"baseline": "bash scripts/baseline.sh",
"check": "cdkrd check",
"check:ci": "cdkrd check --fail --strict --json",
"verify:clean": "bash scripts/verify-clean.sh",
"scenario:declared": "bash scripts/scenario-declared-drift.sh",
"scenario:undeclared": "bash scripts/scenario-undeclared-drift.sh",
"scenario:added": "bash scripts/scenario-added-resource.sh",
"scenario:ignore": "bash scripts/scenario-ignore.sh",
"scenario:pre-deploy": "bash scripts/scenario-pre-deploy.sh",
"scenario:core": "bash scripts/run-core-scenarios.sh",
"reset": "bash scripts/reset.sh",
"test:assert": "node --test tests/assert-cdkrd-report.test.mjs",
"test": "pnpm run build && pnpm run lint && pnpm run synth && pnpm run test:assert"
},
"dependencies": {
"aws-cdk-lib": "2.261.0",
"constructs": "10.6.0"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@types/node": "22.15.30",
"aws-cdk": "2.1131.0",
"cdk-real-drift": "0.23.2",
"ts-node": "10.9.2",
"typescript": "5.8.3"
}
}