-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
{
"name": "@stekern/cdk-constructs",
"repository": {
"type": "git",
"url": "https://github.com/stekern/cdk-constructs.git"
},
"version": "0.0.0-development",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc --noEmit && tsc --project tsconfig.build.json && npm run copy-assets",
"copy-assets": "find assets -type f -not -name '*.snap' -not -name '*.spec.ts' -not -name 'mocks.ts' -not -name 'types.ts' -exec bash -c 'path=\"{}\" && mkdir -p \"dist/${path%/*}\" && cp \"$path\" \"dist/$path\"' ';'",
"lint": "eslint .",
"test": "jest"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main",
{
"name": "dev",
"channel": "alpha",
"prerelease": true
}
]
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "3.726.1",
"@aws-sdk/client-kms": "3.726.1",
"@aws-sdk/client-secrets-manager": "3.726.1",
"@aws-sdk/client-servicediscovery": "3.726.1",
"@aws-sdk/lib-dynamodb": "3.726.1",
"@aws-sdk/util-dynamodb": "3.726.1",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@octokit/types": "7.5.1",
"@octokit/webhooks-types": "6.11.0",
"@tsconfig/node16": "16.1.3",
"@types/aws-lambda": "8.10.147",
"@types/jest": "29.5.14",
"@types/node": "20.17.12",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"aws-cdk": "2.175.1",
"aws-cdk-lib": "2.175.1",
"aws-sdk": "2.1692.0",
"constructs": "10.4.2",
"esbuild": "0.24.2",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.14.0",
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"ts-jest": "29.2.5",
"typedoc": "0.26.11",
"typescript": "5.6.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}