-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.34 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.34 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@aws-quickstart/eks-blueprints",
"version": "1.18.2",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://awslabs.github.io/cdk-eks-blueprints/",
"repository": {
"url": "https://github.com/awslabs/cdk-eks-blueprints.git",
"type": "git"
},
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc -w",
"test": "jest --verbose false --detectOpenHandles",
"cdk": "cdk",
"examples": "cdk --app \"npx ts-node examples/examples.ts\"",
"debug": "cdk --app \"npx ts-node examples/$DEBUG_FILE\"",
"debug-run": "./debug.sh",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/dot-object": "^2.1.6",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.3",
"@types/semver": "^7.5.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"cpy-cli": "^5.0.0",
"eslint": "^10.0.2",
"jest": "^30.2.0",
"json-schema-to-typescript": "^15.0.2",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.7",
"typescript": "^5.8.2"
},
"dependencies": {
"@aws-cdk/lambda-layer-kubectl-v32": "^2.0.0",
"@aws-cdk/lambda-layer-kubectl-v33": "^2.0.0",
"@aws-cdk/lambda-layer-kubectl-v34": "^2.0.0",
"@aws-sdk/client-eks": "^3.844.0",
"@aws-sdk/client-secrets-manager": "^3.844.0",
"@types/assert": "^1.5.10",
"@types/bcrypt": "^6.0.0",
"@types/lodash.clonedeep": "^4.5.9",
"@types/uuid": "^10.0.0",
"bcrypt": "^6.0.0",
"constructs": "^10.3.0",
"dot-object": "^2.1.4",
"js-yaml": "4.1.1",
"lodash": "4.18.1",
"reflect-metadata": "^0.2.1",
"semver": "^7.7.2",
"simple-base": "^1.0.0",
"sync-request": "6.1.0",
"ts-deepmerge": "^7.0.0",
"ts-md5": "^1.3.1",
"tslog": "^4.10.2",
"uuid": "^11.1.0",
"yaml": "^2.8.0",
"zod": "^3.22.4"
},
"optionalDependencies": {
"@aws-cdk/lambda-layer-kubectl-v29": "^2.1.1",
"@aws-cdk/lambda-layer-kubectl-v30": "^2.0.0",
"@aws-cdk/lambda-layer-kubectl-v31": "^2.0.0"
},
"overrides": {
"semver": "^7.7.2",
"rimraf": "^5.0.0",
"glob": "^12.0.0"
},
"peerDependencies": {
"aws-cdk": "2.1109.0",
"aws-cdk-lib": "2.241.0"
}
}