-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "cdk-for-bible",
"version": "0.1.0",
"bin": {
"cdk-for-bible": "bin/cdk-for-bible.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "./node_modules/.bin/eslint . --ext .ts",
"lint-fix": "npm run lint -- --fix",
"test": "jest",
"cdk": "cdk",
"format": "prettier --write \"{src,lib,config,bin}/**/*.{js,ts,json,yml,yaml}\""
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^10.17.60",
"@types/prettier": "2.6.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"aws-cdk": "2.60.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cdk": "^1.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^3.1.0",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "2.8.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~4.9.4"
},
"dependencies": {
"aws-cdk-lib": "2.60.0",
"constructs": "^10.0.0",
"js-yaml": "^4.1.0",
"source-map-support": "^0.5.21"
},
"lint-staged": {
"*.ts": [
"npm run lint-fix"
]
}
}