forked from shapeshift/cluster-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 880 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": "@shapeshiftoss/cluster-launcher",
"version": "0.20.1",
"license": "MIT",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && cp src/crds/*.yaml dist/crds",
"clean": "rm -rf dist node_modules"
},
"dependencies": {
"@pulumi/aws": "5.29.1",
"@pulumi/awsx": "1.0.2",
"@pulumi/eks": "1.0.1",
"@pulumi/kubernetes": "3.23.1",
"@pulumi/kubernetesx": "0.1.6",
"@pulumi/pulumi": "3.50.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"typescript": "^4.9.5"
},
"prettier": {
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "none",
"arrowParens": "avoid"
}
}