-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 845 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
{
"name": "ddd-demo-cdk8s-hello",
"description": "AWS CDK8s for generating 'Hello World' workload manifests - demo for DDD Perth 2021",
"main": "main.js",
"types": "main.ts",
"license": "MIT",
"scripts": {
"import": "cdk8s import",
"synth": "cdk8s synth",
"compile": "tsc",
"watch": "tsc -w",
"test": "jest",
"build": "npm run compile && npm run test && npm run synth",
"upgrade": "npm i cdk8s@latest cdk8s-cli@latest",
"upgrade:next": "npm i cdk8s@next cdk8s-cli@next"
},
"dependencies": {
"cdk8s": "^1.0.0-beta.27",
"cdk8s-plus-17": "^1.0.0-beta.48",
"constructs": "^3.3.116"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.13",
"cdk8s-cli": "^1.0.0-beta.35",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}