-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 902 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 902 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
34
35
36
{
"name": "basic-cdk-setup",
"version": "0.1.0",
"bin": {
"basic-cdk-setup": "bin/basic-cdk-setup.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"package": "dotnet build -c release",
"synth": "cdk synth basic-cdk-setup-dev --profile basic-cdk-setup-dev",
"deploy": "cdk deploy basic-cdk-setup-dev --profile basic-cdk-setup-dev --outputs-file outputs.json"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "10.17.27",
"@types/prettier": "2.6.0",
"aws-cdk": "2.34.2",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "~3.9.7"
},
"dependencies": {
"aws-cdk-lib": "2.34.2",
"constructs": "^10.0.0",
"dotenv": "^16.0.1",
"env-var": "^7.1.1",
"source-map-support": "^0.5.21"
},
"prettier": {
"printWidth": 120
}
}