-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 796 Bytes
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
{
"name": "eventbridge-lambda",
"version": "0.1.0",
"bin": "bin/eventbridge-lambda.js",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "vitest --run --passWithNoTests",
"cdk": "cdk",
"lint": "oxlint",
"lint-fix": "oxlint --fix",
"format": "oxfmt",
"format-check": "oxfmt --check"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.163",
"@types/node": "^24.13.3",
"aws-cdk": "^2.1140.0",
"esbuild": "^0.28.2",
"jiti": "^2.7.0",
"oxfmt": "^0.67.0",
"oxlint": "^1.82.0",
"oxlint-plugin-awscdk": "^1.0.3",
"tsx": "^4.23.13",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"dependencies": {
"aws-cdk-lib": "^2.268.0",
"constructs": "^10.8.1"
}
}