-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 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
{
"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",
"test:update": "NODE_OPTIONS=--experimental-vm-modules jest --updateSnapshot",
"lint": "biome check",
"lint:fix": "biome check --fix",
"fmt": "biome format --write",
"fmt:check": "biome format",
"prepare": "npm run build && husky",
"semantic-release": "semantic-release",
"upgrade-dependencies": "ncu --upgrade --install always --format group --reject @types/node",
"biome-migrate": "biome migrate --write"
},
"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",
"provenance": true
},
"devDependencies": {
"@aws-cdk/assert": "2.68.0",
"@biomejs/biome": "2.4.6",
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@types/jest": "30.0.0",
"@types/node": "24.12.0",
"aws-cdk-lib": "2.241.0",
"constructs": "10.5.1",
"husky": "9.1.7",
"jest": "30.2.0",
"jest-cdk-snapshot": "2.3.6",
"npm-check-updates": "19.6.3",
"semantic-release": "25.0.3",
"ts-jest": "29.4.6",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}