-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.61 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.61 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
{
"name": "bertie-blackman-shared-infra",
"license": "MIT",
"version": "0.1.0",
"bin": {
"main": "bin/cdk.ts"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"deploy": "cdk deploy --require-approval never",
"synth": "cdk synth ",
"prettier:check": "prettier --check \"**/*.*\"",
"prettier:fix": "prettier --write \"**/*.*\"",
"lint:check": "eslint --ignore-path .gitignore . --ext ts --ext js",
"lint:fix": "eslint --fix --ignore-path .gitignore . --ext ts --ext js",
"prepare": "husky install"
},
"devDependencies": {
"@aws-cdk/assert": "1.107.0",
"@types/jest": "^27.4.1",
"@types/node": "20.11.28",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"aws-cdk": "1.107.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^26.6.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.2",
"typescript": "~4.9.5"
},
"dependencies": {
"@aws-cdk/aws-budgets": "1.107.0",
"@aws-cdk/aws-certificatemanager": "1.107.0",
"@aws-cdk/aws-cloudfront": "1.107.0",
"@aws-cdk/aws-ec2": "1.107.0",
"@aws-cdk/aws-iam": "1.107.0",
"@aws-cdk/aws-route53-targets": "^1.107.0",
"@aws-cdk/aws-s3": "1.107.0",
"@aws-cdk/aws-ses": "1.107.0",
"@aws-cdk/aws-ses-actions": "1.107.0",
"@aws-cdk/aws-sns": "^1.204.0",
"@aws-cdk/aws-sns-subscriptions": "^1.107.0",
"@aws-cdk/core": "1.107.0",
"source-map-support": "^0.5.21"
}
}