forked from aws-samples/cdk-eks-blueprints-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
39
40
41
42
43
44
45
46
{
"name": "eks-blueprints-patterns",
"version": "1.1.0",
"main": "dist/bin/main.js",
"types": "dist/bin/main.d.ts",
"bin": {
"eks-blueprints-patterns": "dist/bin/main.js"
},
"scripts": {
"build": "rm -rf dist && tsc --skipLibCheck",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"devDependencies": {
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"copyfiles": "^2.4.1",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~4.8.4"
},
"dependencies": {
"@aws-quickstart/eks-blueprints": "^1.6.0",
"@datadog/datadog-eks-blueprints-addon": "^0.1.2",
"@dynatrace/dynatrace-eks-blueprints-addon": "^0.0.3",
"@kastenhq/kasten-eks-blueprints-addon": "^1.0.1",
"@keptn/keptn-controlplane-eks-blueprints-addon": "^0.5.0",
"@kubecost/kubecost-eks-blueprints-addon": "^0.1.2",
"@newrelic/newrelic-eks-blueprints-addon": "^1.0.9",
"@rafaysystems/rafay-eks-blueprints-addon": "^0.0.2",
"@snyk-partners/snyk-monitor-eks-blueprints-addon": "^1.1.0",
"aws-cdk": "2.76.0",
"eks-blueprints-cdk-kubeflow-ext": "0.1.9",
"source-map-support": "^0.5.21"
},
"overrides": {
"@aws-quickstart/eks-blueprints": "^1.6.0",
"aws-cdk": "2.76.0"
}
}