-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
47
48
49
50
51
{
"name": "@jbutz/poc-serverless-microservice-discovery",
"version": "1.0.0",
"bin": {
"aws": "bin/aws.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk",
"deploy": "cdk deploy --all"
},
"devDependencies": {
"@aws-sdk/client-ssm": "^3.267.0",
"@types/node": "^18.11.19",
"@types/node-fetch": "^2.6.2",
"aws-cdk": "2.64.0",
"esbuild": "^0.17.5",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "~4.9.4"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^1.5.1",
"@aws-lambda-powertools/metrics": "^1.5.1",
"@aws-lambda-powertools/tracer": "^1.5.1",
"@aws-sdk/client-servicediscovery": "^3.264.0",
"@middy/core": "^4.2.3",
"aws-cdk-lib": "2.64.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
},
"private": true,
"license": "MIT",
"author": {
"name": "Jason Butz",
"url": "https://jasonbutz.info"
},
"repository": {
"url": "https://github.com/jbutz/poc-serverless-microservice-discovery.git",
"type": "git"
},
"engines": {
"node": ">= 18.14.0",
"npm": ">= 9.3.1"
},
"prettier": {
"semi": true,
"singleQuote": true
}
}