forked from shapirov103/eks-ssp-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 887 Bytes
/
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
{
"name": "eks-blueprint-sample",
"version": "0.1.0",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"bin": {
"eks-ssp-patterns": "dist/bin/main.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"devDependencies": {
"@aws-cdk/assert": "1.104.0",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"aws-cdk": "1.104.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"
},
"dependencies": {
"@aws-cdk/core": "1.104.0",
"@shapirov/cdk-eks-blueprint": "^0.10.0",
"source-map-support": "^0.5.16"
}
}