forked from aws-samples/aws-cdk-cicd-boot-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.54 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.1.2",
"bin": {
"pipeline": "bin/app.ts"
},
"scripts": {
"prepare": "if [ -z $CODEBUILD_BUILD_ID ] && [ -z $GITHUB_ACTIONS ]; then husky install; 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 -- -u",
"license": "run-script-os --",
"license:default": "./scripts/check-licenses.sh",
"license:macos": "./scripts/check-licenses-locally.sh",
"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": ">=18"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "18.0.0",
"@commitlint/config-conventional": "18.0.0",
"@types/jest": "29.5.4",
"@types/node": "20.6.0",
"@types/prettier": "2.6.0",
"@types/source-map-support": "0.5.7",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"concurrently": "8.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.49.0",
"eslint-plugin-import": "2.28.1",
"husky": "8.0.3",
"jest": "29.7.0",
"run-script-os": "1.1.6",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"dependencies": {
"@cloudcomponents/cdk-pull-request-approval-rule": "2.1.0",
"@cloudcomponents/cdk-pull-request-check": "2.1.0",
"@types/uuid": "9.0.3",
"@typescript-eslint/visitor-keys": "5.62.0",
"aws-cdk-lib": "2.92.0",
"cdk-monitoring-constructs": "5.10.1",
"cdk-nag": "2.27.129",
"constructs": "10.2.70",
"source-map-support": "0.5.21",
"uuid": "9.0.1"
},
"overrides": {
"http-cache-semantics": "4.1.1",
"semver": "7.5.3",
"@babel/traverse": "7.23.2"
}
}