forked from aws-samples/dms-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (61 loc) · 1.54 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
{
"version": "0.1.0",
"main": "index.js",
"bin": {
"dms-cdk": "bin/dms-cdk.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "esw . --ext .js,.jsx,.ts,.tsx -w --changed --clear",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-angular": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"aws-cdk": "2.30.0",
"@typescript-eslint/parser": "5.26.0",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@types/node": "17.0.35",
"@types/jest": "27.5.2",
"eslint": "8.18.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-prettier": "4.2.1",
"husky": "^8.0.1",
"jest": "28.1.0",
"lint-staged": "12.4.1",
"prettier": "2.6.2",
"ts-jest": "28.0.2",
"ts-node": "10.7.0",
"typescript": "4.6.4"
},
"dependencies": {
"aws-cdk-lib": "2.30.0",
"cdk-assets": "2.31.0",
"constructs": "10.1.1",
"npm": "8.11.0",
"promptly": "3.2.0",
"source-map-support": "0.5.21"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
]
}
}