-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 KB
/
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
38
39
40
41
42
43
{
"name": "cdktf-vsphere",
"version": "1.0.0",
"main": "main.js",
"types": "main.ts",
"license": "MPL-2.0",
"private": true,
"scripts": {
"get": "cdktf get",
"build": "tsc",
"synth": "cdktf synth",
"compile": "tsc --pretty",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next",
"lint": "eslint . --ext .ts",
"fix": "eslint . --fix --ext .ts"
},
"engines": {
"node": ">=14.0"
},
"dependencies": {
"@types/jest": "^27.5.1",
"cdktf": "^0.10.4",
"cdktf-cli": "^0.10.4",
"constructs": "^10.1.4",
"jest": "^28.1.0",
"readline-sync": "^1.4.10",
"ts-jest": "^28.0.2",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-simple-import-sort": "^7.0.0"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@types/readline-sync": "^1.4.4"
}
}