forked from hashicorp/terraform-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "cdktf-cli",
"version": "0.0.0",
"description": "CDK for Terraform CLI",
"bin": {
"cdktf": "bin/cdktf"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"watch-preserve-output": "tsc -w --preserveWatchOutput",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test": "yarn lint && jest",
"jest-watch": "jest --watch",
"package": "./package.sh",
"dist-clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git://github.com/hashicorp/terraform-cdk.git",
"directory": "packages/cdktf-cli"
},
"author": {
"name": "HashiCorp",
"url": "https://hashicorp.com"
},
"license": "MPL-2.0",
"dependencies": {
"@cdktf/hcl2json": "0.0.0",
"@skorfmann/ink-confirm-input": "^3.0.0",
"@skorfmann/terraform-cloud": "^1.10.1",
"@types/node": "^14.0.26",
"archiver": "^5.1.0",
"cdktf": "0.0.0",
"chalk": "^4.1.0",
"codemaker": "^0.22.0",
"constructs": "^3.3.75",
"extract-zip": "^2.0.1",
"follow-redirects": "^1.13.3",
"fs-extra": "^8.1.0",
"indent-string": "^4.0.0",
"ink": "^3.0.8",
"ink-spinner": "^4.0.1",
"jsii-srcmak": "^0.1.272",
"log4js": "^6.3.0",
"open": "^7.0.4",
"react": "<17.0.0",
"readline-sync": "^1.4.10",
"semver": "^7.3.2",
"sscaff": "^1.2.0",
"stream-buffers": "^3.0.2",
"strip-ansi": "^6.0.0",
"uuid": "^8.3.0",
"yargs": "^15.1.0",
"zod": "^1.11.7"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"settings": {
"react": {
"version": "detect"
}
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-var-requires": 0,
"react/no-unescaped-entities": 0,
"no-sequences": "error",
"no-irregular-whitespace": ["error", { "skipTemplates": true }]
},
"ignorePatterns": [
"node_modules",
"dist",
"coverage"
]
},
"devDependencies": {
"@types/archiver": "^5.1.0",
"@types/follow-redirects": "^1.13.0",
"@types/fs-extra": "^8.1.0",
"@types/ink": "^2.0.3",
"@types/ink-spinner": "^3.0.0",
"@types/jest": "^25.1.2",
"@types/json-schema": "^7.0.4",
"@types/nock": "^11.1.0",
"@types/react": "^16.9.35",
"@types/readline-sync": "^1.4.3",
"@types/semver": "^7.1.0",
"@types/stream-buffers": "^3.0.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.2.0",
"ink-testing-library": "^2.0.0",
"jest": "^26.6.3",
"nock": "^13.0.7",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
}
}