-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 770 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
{
"name": "cdk8s-sample",
"version": "1.0.0",
"main": "main.js",
"types": "main.ts",
"license": "Apache-2.0",
"private": true,
"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.5.24",
"cdk8s-plus-22": "^1.0.0-beta.124",
"constructs": "^3.3.225"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^14.18.12",
"cdk8s-cli": "^1.0.106",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typescript": "^4.5.5"
}
}