-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 908 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": "meshtest",
"version": "0.1.0",
"bin": {
"meshtest": "bin/meshtest.js"
},
"license": "UNLICENSED",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"cdk:appmesh": "cdk --app \"yarn ts-node bin/appmesh.ts\"",
"cdk:bluegreen": "cdk --app \"yarn ts-node bin/bluegreen.ts\"",
"cdk:serviceconnect": "cdk --app \"yarn ts-node bin/serviceconnect.ts\"",
"start": "ts-node bin/client.ts"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "18.11.9",
"@types/node-fetch": "^2.6.3",
"aws-cdk": "2.54.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~4.9.3"
},
"dependencies": {
"@aws-sdk/client-ssm": "^3.312.0",
"aws-cdk-lib": "2.54.0",
"constructs": "^10.0.0",
"node-fetch": "^2.6.6",
"source-map-support": "^0.5.21"
}
}