-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.61 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
38
{
"name": "data-landing-zone-example-typescript",
"version": "0.1.0",
"bin": {
"data-landing-zone-example-typescript": "bin/data-landing-zone-example-typescript.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"bootstrap": "npx ts-node --prefer-ts-exts scripts/bootstrap",
"diff-all": "npx ts-node --prefer-ts-exts scripts/diff-all.ts",
"diff-phase-root": "npx ts-node --prefer-ts-exts scripts/diff-phase-root.ts",
"diff-phase-security": "npx ts-node --prefer-ts-exts scripts/diff-phase-security.ts",
"diff-phase-workloads-development": "npx ts-node --prefer-ts-exts scripts/diff-phase-workloads-development.ts",
"diff-phase-workloads-production": "npx ts-node --prefer-ts-exts scripts/diff-phase-workloads-production.ts",
"deploy-all": "npx ts-node --prefer-ts-exts scripts/deploy-all.ts",
"deploy-phase-root": "npx ts-node --prefer-ts-exts scripts/deploy-phase-root.ts",
"deploy-phase-security": "npx ts-node --prefer-ts-exts scripts/deploy-phase-security.ts",
"deploy-phase-workloads-development": "npx ts-node --prefer-ts-exts scripts/deploy-phase-workloads-development.ts",
"deploy-phase-workloads-production": "npx ts-node --prefer-ts-exts scripts/deploy-phase-workloads-production.ts"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "22.7.9",
"aws-cdk": "2.171.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3"
},
"dependencies": {
"aws-data-landing-zone": "^0.0.40",
"aws-cdk-lib": "2.171.0",
"constructs": "^10.0.0"
}
}