-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 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
53
54
{
"name": "openhands-infra",
"version": "1.3.0",
"bin": {
"openhands-infra": "bin/openhands-infra.js"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "npm run build && npm run test:ts && npm run test:py",
"test:ts": "jest --passWithNoTests",
"test:py": "PYTHONDONTWRITEBYTECODE=1 .venv/bin/python -m pytest docker/test_*.py -v",
"cdk": "cdk"
},
"devDependencies": {
"@aws-sdk/client-cloudwatch": "^3.1000.0",
"@aws-sdk/client-dynamodb": "^3.1000.0",
"@aws-sdk/client-ecs": "^3.1000.0",
"@aws-sdk/client-efs": "^3.1000.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.3",
"@types/pg": "^8.15.5",
"aws-cdk": "2.1108.0",
"aws-sdk-client-mock": "^4.1.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
},
"dependencies": {
"@aws-cdk/aws-lambda-python-alpha": "^2.240.0-alpha.0",
"@aws-lambda-powertools/logger": "^2.31.0",
"@aws-sdk/client-rds-data": "^3.1000.0",
"@aws-sdk/client-s3": "^3.1000.0",
"@aws-sdk/client-secrets-manager": "^3.1000.0",
"@types/source-map-support": "^0.5.10",
"aws-cdk-lib": "^2.248.0",
"constructs": "^10.5.1",
"esbuild": "^0.27.3",
"pg": "^8.19.0",
"source-map-support": "^0.5.21"
},
"overrides": {
"fast-xml-parser": "5.5.10",
"minimatch": "10.2.5",
"handlebars": "4.7.9",
"picomatch": "4.0.4",
"path-to-regexp": "8.4.2",
"brace-expansion": "5.0.5"
}
}