-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 873 Bytes
/
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
{
"name": "elasticbeanstalk-environment",
"version": "1.0.0",
"description": "Creates a Blue/Green deployment to EBS",
"private": true,
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk",
"prepare": "husky",
"test": "jest"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^8.10.40",
"aws-cdk": "*",
"dotenv": "^16.4.5",
"eslint": "^9.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "3.3.2",
"ts-jest": "^29.1.5",
"typescript": "~5.1.6",
"typescript-eslint": "^7.15.0"
},
"dependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.9"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}