-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.66 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.66 KB
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
52
53
54
55
56
{
"name": "aws4embeddedlinux-cdk-lib",
"version": "0.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
"check": "eslint '**/*.{js,ts,json}'",
"clean": "tsc --build --clean",
"doc": "typedoc --sort source-order --readme README.md",
"format": "eslint '**/*.{js,ts,json}' --quiet --fix",
"postinstall": "npm run build > /dev/null || echo 'prepapre command completed successfully with errors'",
"prepare-commit": "pre-commit run --all-files --color=always --show-diff-on-failure",
"test": "jest --passWithNoTests --updateSnapshot",
"update-snapshot": "jest -u",
"watch": "tsc -w",
"precheck": "yarn clean",
"preformat": "yarn clean"
},
"dependencies": {
"aws-cdk-lib": "^2.236.0",
"constructs": "^10.4.2"
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "25.2.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"aws-cdk": "^2.1105.0",
"cdk-nag": "^2.37.51",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.5.0",
"globals": "^17.1.0",
"jest": "^30.2.0",
"prettier": "^3.8.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typedoc": "^0.28.16",
"typescript": "~5.9.3",
"typescript-eslint": "^8.18.0"
},
"resolutions": {
"glob": "^9.3.5"
},
"overrides": {
"glob": "^9.3.5"
},
"packageManager": "yarn@4.7.0"
}