-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 993 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 993 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
35
36
37
38
{
"name": "cross-region-param",
"version": "0.1.0",
"bin": {
"cross-region-param": "bin/cross-region-param.js"
},
"scripts": {
"build": "tsc",
"cdk": "cdk",
"clean": "tsc --build --clean",
"lint-staged": "lint-staged",
"lint": "biome check --write --organize-imports-enabled=false --no-errors-on-unmatched --files-ignore-unknown=true",
"prepare": "husky",
"test": "jest",
"watch": "tsc -w"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "22.13.8",
"aws-cdk": "2.1001.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "~5.8.2"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"aws-cdk-lib": "2.181.1",
"constructs": "^10.4.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3"
},
"lint-staged": {
"*.{ts,json}": [
"biome check --write --organize-imports-enabled=false --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}