-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.37 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
81
82
83
84
85
86
87
88
89
{
"name": "@liflig/cdk",
"version": "0.0.0-development",
"description": "CDK library for Liflig",
"repository": {
"type": "git",
"url": "https://github.com/capralifecycle/liflig-cdk"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest --runInBand",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build && husky",
"semantic-release": "semantic-release",
"snapshots": "./scripts/create-snapshots.sh"
},
"bin": {
"cdk-create-snapshots": "lib/bin/cdk-create-snapshots.js",
"fetch-pipeline-variables": "lib/bin/fetch-pipeline-variables.js"
},
"keywords": [
"cdk"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"assets",
"lib"
],
"publishConfig": {
"access": "public"
},
"overrides": {
"semantic-release": {
"@semantic-release/npm": "12.0.1"
}
},
"devDependencies": {
"@aws-cdk/assert": "2.68.0",
"@aws-sdk/client-cloudwatch-logs": "3.687.0",
"@aws-sdk/client-codebuild": "3.690.0",
"@aws-sdk/client-codepipeline": "3.687.0",
"@aws-sdk/client-ecs": "3.687.0",
"@aws-sdk/client-s3": "3.689.0",
"@aws-sdk/client-secrets-manager": "3.687.0",
"@aws-sdk/client-ses": "3.687.0",
"@aws-sdk/client-sesv2": "3.687.0",
"@aws-sdk/client-sfn": "3.687.0",
"@aws-sdk/lib-storage": "3.689.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@types/aws-lambda": "8.10.145",
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"aws-cdk": "2.161.1",
"aws-cdk-lib": "2.161.1",
"constructs": "10.4.2",
"esbuild": "0.24.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-cdk-snapshot": "2.2.5",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"dependencies": {
"@capraconsulting/webapp-deploy-lambda": "2.2.6",
"aws-sdk": "2.1691.0",
"cpy": "8.1.2",
"del": "6.1.1",
"execa": "5.1.1",
"glob": "8.1.0",
"source-map-support": "0.5.21"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}