-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.39 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
70
71
{
"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": {
"audit": "nx run-many -t lint typecheck test --configuration coverage --skip-nx-cache",
"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.7.0",
"@changesets/cli": "^2.31.1",
"@nx/esbuild": "22.7.8",
"@nx/eslint": "22.7.8",
"@nx/eslint-plugin": "22.7.8",
"@nx/jest": "22.7.8",
"@nx/js": "22.7.8",
"@nx/node": "22.7.8",
"@nx/workspace": "22.7.8",
"@swc-node/register": "^1.12.1",
"@swc/core": "^1.15.46",
"@types/jest": "^30.0.0",
"@types/node": "24.13.3",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"cdk-nag": "^2.38.2",
"eslint": "^9.39.5",
"eslint-plugin-prettier": "^5.5.6",
"jest": "^29.7.0",
"nx": "22.7.8",
"prettier": "^3.9.6",
"ts-jest": "^29.4.11",
"typescript": "^5.6.3"
},
"packageManager": "yarn@4.5.1",
"dependencies": {
"eslint-config-prettier": "^9.1.0"
},
"resolutions": {
"form-data": "4.0.4",
"brace-expansion": "1.1.16",
"@smithy/config-resolver": "4.4.0",
"fast-xml-parser": "5.3.4",
"constructs": "^10.5.0",
"fs-extra@npm:^7.0.1": "11.3.6",
"fs-extra@npm:^8.1.0": "11.3.6",
"yargs": "18.1.0"
}
}