-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "aws-cdk-boiterplate",
"version": "0.1.0",
"type": "module",
"bin": {
"aws-cdk-boiterplate": "bin/aws-cdk-boiterplate.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"formatter:check": "npx prettier --check .",
"formatter:fix": "npx prettier --write .",
"linter:check": "eslint --ext .ts .",
"linter:fix": "eslint --fix --ext .ts .",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@types/jest": "29.5.3",
"@types/node": "20.5.0",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"aws-cdk": "2.92.0",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"husky": "8.0.3",
"jest": "29.6.2",
"lint-staged": "14.0.0",
"prettier": "3.0.2",
"ts-jest": "29.1.1",
"tsx": "3.12.7",
"typescript": "5.1.6"
},
"dependencies": {
"aws-cdk-lib": "2.92.0",
"constructs": "10.2.69",
"source-map-support": "0.5.21"
}
}