-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.01 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
{
"name": "caccl-deploy",
"version": "0.15.0",
"description": "A cli tool for managing ECS/Fargate app deployments",
"main": "index.js",
"bin": {
"caccl-deploy": "index.js"
},
"scripts": {
"test": "jest",
"prettier": "npx prettier --write --ignore-path .gitignore \"**/*.{ts,js}\"",
"prepare": "husky install"
},
"keywords": [
"DCE",
"CLI",
"AWS",
"ECS"
],
"lint-staged": {
"**/*.{ts,js}": [
"npx prettier --write --ignore-path .gitignore",
"npx eslint --fix"
]
},
"author": "Jay Luker",
"license": "ISC",
"files": [
"lib",
"index.js",
"cdk.json",
"tsconfig.json",
"cdk",
"cdk/lib",
"cdk/assets",
"cdk/cdk.json",
"cdk/tsconfig.json",
"cdk/*.ts"
],
"dependencies": {
"aws-cdk": "~2.41.0",
"aws-cdk-lib": "~2.41.0",
"aws-sdk": "^2.1156.0",
"camel-case": "^4.1.2",
"chalk": "4.1.2",
"commander": "6.2.1",
"conf": "^10.2.0",
"constructs": "~10.1.97",
"figlet": "^1.5.2",
"flat": "^5.0.2",
"moment": "^2.29.3",
"node-fetch": "2.6.7",
"object-hash": "^3.0.0",
"prompts": "^2.4.2",
"semver": "^7.3.7",
"source-map-support": "^0.5.21",
"table": "^6.8.0",
"tempy": "1.0.1",
"ts-node": "^10.9.1",
"untildify": "^4.0.0",
"yn": "4.0.0"
},
"devDependencies": {
"typescript": "^4.8.3",
"@types/node": "^18.7.16",
"@types/object-hash": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-table": "^7.32.1",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-cdk": "^1.8.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.2",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1"
},
"jest": {
"verbose": true,
"testMatch": [
"**/test/**/*.jest.js"
]
}
}