-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "@demos/cdkapipipeline",
"version": "1.0.0",
"bin": {
"CdkApp": "bin/App.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"artifactlogin": "aws codeartifact login --tool npm --repository $REPO_NAME --domain $DOMAIN_NAME --domain-owner $DEVOPS_ACCOUNT --namespace demos",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@aws-cdk/assertions": "^1.148.0",
"@types/jest": "^27.4.1",
"@types/node": "17.0.21",
"aws-cdk": "^2.16.0",
"jest": "^27.5.1",
"jest-junit-reporter": "^1.1.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "~4.6.2"
},
"dependencies": {
"@demos/sharedcdkconstruct": "^1.1.18",
"aws-cdk-lib": "^2.16.0",
"cdk": "^2.16.0",
"constructs": "^10.0.87",
"lint-staged": "^12.3.5",
"source-map-support": "^0.5.21"
},
"audit-level": "critical",
"lint-staged": {
"*.ts": [
"npm run test"
],
"*": [
"git secrets --pre_commit_hook -- \"$@\""
]
}
}