-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
80 lines (80 loc) · 2.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cicd-boot",
"version": "1.2.3",
"bin": {
"pipeline": "bin/app.ts"
},
"scripts": {
"prepare": "if [ -z $CODEBUILD_BUILD_ID ] && [ -z $GITHUB_ACTIONS ]; then husky; fi",
"build": "tsc && tsc --build --clean && npm run lint",
"watch": "tsc -w",
"test": "jest",
"cdk": "npx [email protected]",
"validate": "npx ts-node ./scripts/package-checksum-validator.ts",
"validate:fix": "ts-node ./scripts/package-checksum-generator.ts",
"audit": "concurrently 'npm:audit:*(!fix)'",
"audit:deps:nodejs": "npx [email protected] audit --level=high --registry='https://registry.npmjs.org/'",
"audit:deps:python": "./scripts/check-deps-python.sh",
"audit:scan:security": "./scripts/check-code-scan-security.sh",
"audit:license": "npm run license",
"audit:fix:license": "npm run license -- --fix",
"license": "npx ts-node ./scripts/check-licenses.ts",
"lint": "npx eslint . --ext .ts --max-warnings 0",
"lint:fix": "npx eslint . --ext .ts --fix",
"commitlint": "commitlint --edit"
},
"config": {
"applicationName": "CICDBoot",
"cdkQualifier": "cicdboot",
"repositoryName": "cicd-boot",
"repositoryType": "CODECOMMIT",
"cicdVpcType": "NO_VPC"
},
"engines": {
"node": ">=22"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "19.4.1",
"@commitlint/config-conventional": "19.4.1",
"@types/jest": "29.5.12",
"@types/node": "22.5.2",
"@types/prettier": "3.0.0",
"@types/source-map-support": "0.5.10",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"concurrently": "8.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"husky": "9.1.5",
"jest": "29.7.0",
"run-script-os": "1.1.6",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"dependencies": {
"@cloudcomponents/cdk-pull-request-approval-rule": "2.4.0",
"@cloudcomponents/cdk-pull-request-check": "2.4.0",
"@types/uuid": "10.0.0",
"@typescript-eslint/visitor-keys": "8.3.0",
"aws-cdk-lib": "2.155.0",
"cdk-monitoring-constructs": "8.1.1",
"cdk-nag": "2.28.195",
"constructs": "10.3.0",
"csv": "6.3.10",
"glob": "11.0.0",
"source-map-support": "0.5.21",
"uuid": "10.0.0"
},
"overrides": {
"http-cache-semantics": "4.1.1",
"semver": "7.5.3",
"@babel/traverse": "7.23.2"
}
}