-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.41 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "data-processing-infrastructure",
"version": "0.3.0",
"description": "Production-oriented AWS CDK infrastructure for event-driven CSV processing with Step Functions, Fargate, and comprehensive security controls.",
"keywords": [
"aws",
"cdk",
"infrastructure-as-code",
"step-functions",
"ecs-fargate",
"event-driven",
"csv-processing",
"opentelemetry",
"opa-policies",
"cloud-security",
"iac"
],
"homepage": "https://github.com/tukue/data-processing-infrastructure#readme",
"bugs": {
"url": "https://github.com/tukue/data-processing-infrastructure/issues"
},
"license": "MIT",
"author": "Data Processing Infrastructure contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/tukue/data-processing-infrastructure.git"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"synth": "npx cdk synth",
"synth:nag": "CDK_NAG=1 npx cdk synth",
"clean": "rm -rf lib/*.js lib/*.d.ts bin/*.js bin/*.d.ts test/*.js test/*.d.ts cdk.out*"
},
"devDependencies": {
"@types/jest": "^30",
"@types/node": "^24.10.1",
"aws-cdk": "2.1122.0",
"cdk-nag": "^2.38.2",
"jest": "^30",
"jsonschema": "^1.4.1",
"ts-jest": "^29",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
},
"dependencies": {
"aws-cdk-lib": "^2.254.0",
"constructs": "^10.5.0"
}
}