-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 841 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 841 Bytes
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
{
"name": "cdk-multi-env",
"version": "1.0.0",
"bin": {
"cdk-multi-env": "bin/cdk-multi-env.js"
},
"scripts": {
"cdk": "cdk",
"test": "jest",
"build": "tsc",
"watch": "tsc -w",
"deploy": "cross-env-shell bash ./cdk-operations.sh deploy",
"destroy": "cross-env-shell bash ./cdk-operations.sh destroy",
"bootstrap": "cross-env-shell bash ./cdk-operations.sh bootstrap"
},
"dependencies": {
"@rkesters/git-agent": "^1.0.2",
"aws-cdk-lib": "2.148.0",
"constructs": "^10.0.0",
"dotenv": "^16.4.5",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "20.14.9",
"aws-cdk": "2.148.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "~5.5.3"
}
}