-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.72 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@capraconsulting/webapp-deploy-lambda",
"version": "0.0.0-development",
"description": "CDK construct for deploying a webapp release to S3 and CloudFront",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/capralifecycle/webapp-deploy-lambda"
},
"scripts": {
"build": "./build.sh && tsc",
"watch": "tsc -w",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build && husky",
"semantic-release": "semantic-release"
},
"keywords": [
"cdk",
"cloudfront",
"deployment",
"s3",
"webapp"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist/webapp_deploy",
"lib"
],
"publishConfig": {
"access": "public"
},
"overrides": {
"semantic-release": {
"@semantic-release/npm": "12.0.1"
}
},
"devDependencies": {
"@aws-cdk/assert": "2.68.0",
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.19.0",
"@types/jest": "29.5.14",
"@types/node": "22.13.1",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"aws-cdk-lib": "2.178.1",
"constructs": "10.4.2",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-cdk-snapshot": "2.2.5",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"ts-jest": "29.2.5",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}