forked from shapirov103/eks-blueprints-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "@komodor/komodor-eks-blueprints-addon",
"description": "Komodor Amazon EKS Blueprints AddOn",
"author": "Komodor",
"version": "1.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"eks-ssp-patterns": "bin/main.ts"
},
"files": [
"dist/**/*",
"bin/**/*"
],
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@aws-quickstart/eks-blueprints": "latest",
"aws-cdk": "^2.20.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@types/babel__traverse": "7.0.4",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"@types/prettier": "<2.6.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"aws-cdk": "^2.60.0",
"copyfiles": "^2.4.1",
"eslint": "^7.26.0",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
}
}