-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 3.79 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@gradientedge/cdk-utils",
"version": "0.0.0",
"description": "Utilities for AWS CDK provisioning",
"main": "dist/index.js",
"engines": {
"node": ">=16 <=20",
"pnpm": "=9"
},
"packageManager": "[email protected]+sha256.9978d5f40d4f376b054cf8c000cf8c326284344281e3c9bbf4e3d6f153b0e8de",
"repository": {
"type": "git",
"url": "git+https://github.com/gradientedge/cdk-utils.git"
},
"release": {
"branches": [
"main"
]
},
"keywords": [
"gradientedge",
"cdk",
"cdktf",
"awscdk"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gradientedge/cdk-utils/issues"
},
"homepage": "https://github.com/gradientedge/cdk-utils#readme",
"scripts": {
"build": "npx rimraf dist/ && npx tsc && pnpm -r build",
"build:production": "rimraf dist/ && npx tsc -p tsconfig.prd.json && pnpm -r build",
"ci": "pnpm install --frozen-lockfile && pnpm build && pnpm validate && pnpm run docs",
"cz": "npx cz",
"docs": "npx rimraf api-docs && pnpm override:plugin:docs && npx jsdoc --pedantic -c jsdoc.json .",
"fix": "pnpm prettify && eslint --fix **/*.ts",
"lint": "pnpm prettify && eslint **/*.ts --cache --max-warnings=0 --no-warn-ignored",
"override:plugin:docs": "cp theme/type-converter.js node_modules/better-docs/typescript",
"prettier": "npx prettier --cache --check \"**/*.{ts,json,md}\"",
"prettify": "npx prettier --cache --write \"**/*.{ts,json,md}\"",
"test": "npx rimraf coverage && npx jest --ci --maxWorkers=100%",
"test:watch": "npx jest --coverage=false --watchAll",
"update:deps": "ncu -u --deep --reject react,react-dom",
"validate": "pnpm prettier && pnpm lint && pnpm test"
},
"husky": {
"hooks": {
"pre-commit": "pnpm prettify && pnpm validate"
}
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.709.0",
"@aws-sdk/credential-providers": "^3.709.0",
"@aws-sdk/types": "^3.709.0",
"@cdktf/provider-aws": "^19.46.0",
"@cdktf/provider-azurerm": "^13.13.0",
"@cdktf/provider-cloudflare": "^11.26.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"app-root-path": "^3.1.0",
"aws-cdk-lib": "^2.173.0",
"cdktf": "^0.20.10",
"cdktf-local-exec": "^0.5.47",
"constructs": "^10.4.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"nconf": "^0.12.1",
"pluralize": "^8.0.0",
"ts-node": "^10.9.2",
"uuid": "^11.0.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"aws-cdk": "^2.173.0",
"better-docs": "^2.7.3",
"codecov": "^3.8.3",
"commitizen": "^4.3.1",
"docdash": "^2.0.2",
"dotenv": "^16.4.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"jsdoc": "^4.0.4",
"jsdoc-babel": "^0.5.0",
"jsdoc-mermaid": "^1.0.0",
"jsdoc-plugin-typescript": "^3.2.0",
"jsdoc-to-markdown": "^9.1.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"taffydb": "^2.7.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.7.2",
"yaml": "^2.6.1"
},
"optionalDependencies": {
"prop-types": "^15.8.1",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"workspaces": [
"app/api-destined-function/*",
"src/*"
]
}