-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "cross-account-eventbridge",
"version": "0.1.0",
"bin": {
"event-bridge-org": "bin/event-bridge-org.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "npm run test:lint",
"format": "eslint --cache --fix .",
"test:lint": "eslint .",
"cdk": "cdk"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.93",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"aws-cdk": "^2.110.0",
"esbuild": "^0.14.25",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^1.16.0",
"@aws-lambda-powertools/metrics": "^1.16.0",
"@aws-lambda-powertools/tracer": "^1.16.0",
"@aws-sdk/client-eventbridge": "^3.54.0",
"@aws-sdk/client-ssm": "^3.54.0",
"@middy/core": "^5.3.5",
"aws-cdk-lib": "^2.110.0",
"case": "^1.6.3",
"constructs": "^10.0.0",
"pino": "^7.8.1",
"source-map-support": "^0.5.16"
}
}