-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "@harshadbhatia/improved-cdk-constructs",
"version": "0.6.0",
"description": "Improved aws cdk constructs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/harshadbhatia/improved-cdk-constructs"
},
"scripts": {
"build": "tsc",
"clean": "rimraf coverage dist pack doc 'lib/**/*.js' 'lib/**/*.d.ts' 'tst/**/*.js' 'tst/**/*.d.ts' 'bin/**/*.d.ts' 'bin/**/*.js' 'interfaces/**/*.js' 'interfaces/**/*.d.ts'",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.19",
"@vscode/dev-container-cli": "^0.292.0",
"aws-cdk": "^2.86.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"@aws-cdk/aws-lambda-python-alpha": "^2.86.0-alpha.0",
"@aws-sdk/client-secrets-manager": "^3.363.0",
"@aws-sdk/node-config-provider": "^3.357.0",
"@aws-sdk/types": "^3.357.0",
"@types/ini": "^1.3.31",
"@types/js-yaml": "^4.0.5",
"aws-cdk-lib": "^2.86.0",
"axios": "^1.4.0",
"config": "^3.3.9",
"constructs": "^10.2.67",
"global": "^4.4.0",
"ini": "^4.1.1",
"js-yaml": "^4.1.0",
"node-gyp": "^9.4.0",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}