-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.56 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
{
"name": "@gradientedge/cdk-utils",
"version": "0.0.0",
"description": "Utilities for AWS CDK provisioning",
"main": "dist/index.js",
"engines": {
"node": ">=16 <=20"
},
"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",
"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%",
"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.496.0",
"@aws-sdk/credential-providers": "^3.496.0",
"@aws-sdk/types": "^3.496.0",
"@cdktf/provider-aws": "^19.2.0",
"@cdktf/provider-azurerm": "^12.2.0",
"@cdktf/provider-cloudflare": "^11.0.0",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.5",
"@types/uuid": "^9.0.8",
"app-root-path": "^3.1.0",
"aws-cdk-lib": "^2.122.0",
"cdktf": "^0.20.1",
"cdktf-local-exec": "^0.5.2",
"constructs": "^10.3.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"nconf": "^0.12.1",
"pluralize": "^8.0.0",
"ts-node": "^10.9.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"aws-cdk": "^2.122.0",
"better-docs": "^2.7.3",
"codecov": "^3.8.3",
"commitizen": "^4.3.0",
"docdash": "^2.0.2",
"dotenv": "^16.3.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"jsdoc": "^4.0.2",
"jsdoc-babel": "^0.5.0",
"jsdoc-mermaid": "^1.0.0",
"jsdoc-plugin-typescript": "^2.2.1",
"jsdoc-to-markdown": "^8.0.0",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.0",
"taffydb": "^2.7.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
},
"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/*"
]
}