-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.21 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.21 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
{
"name": "@aligent/cdk-constructs",
"version": "0.0.1",
"private": true,
"description": "A collection of CDK constructs",
"workspaces": {
"packages": [
"packages/constructs/*",
"packages/cdk-aspects"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/aligent/aws-cdk-constructs.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aligent/aws-cdk-constructs/issues"
},
"homepage": "https://github.com/aligent/aws-cdk-constructs#readme",
"scripts": {
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:version-and-install": "changeset version && yarn install --no-immutable",
"changeset:publish": "changeset publish",
"release": "changeset publish",
"changeset:status": "changeset status",
"affected": "nx show projects --affected",
"affected:packages": "ALL_PACKAGES=$(find packages -maxdepth 1 -type d -not -path packages | xargs -n1 basename | sed 's/^/@aligent\\/cdk-/'); AFFECTED=$(nx show projects --affected --json | jq -r '.[]'); for pkg in $AFFECTED; do echo \"$ALL_PACKAGES\" | grep -q \"@aligent/cdk-$pkg\" && echo \"@aligent/cdk-$pkg\"; done || echo 'No affected packages'"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@nx/esbuild": "20.8.4",
"@nx/eslint": "20.8.4",
"@nx/eslint-plugin": "20.8.4",
"@nx/jest": "20.8.4",
"@nx/js": "20.8.4",
"@nx/node": "20.8.4",
"@nx/workspace": "20.8.4",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.15.24",
"@types/jest": "^30.0.0",
"@types/node": "20.19.39",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"cdk-nag": "^2.37.55",
"eslint": "^9.39.4",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"nx": "20.8.4",
"prettier": "^3.8.2",
"ts-jest": "^29.1.0",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"dependencies": {
"eslint-config-prettier": "^9.1.0"
},
"resolutions": {
"form-data": "4.0.4",
"brace-expansion": "1.1.12",
"@smithy/config-resolver": "4.4.0",
"fast-xml-parser": "5.3.4",
"constructs": "^10.5.0"
}
}