-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
67 lines (67 loc) · 1.65 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
{
"name": "repos",
"version": "1.0.0",
"main": "main.js",
"types": "main.ts",
"license": "MPL-2.0",
"private": true,
"scripts": {
"format": "prettier --write '**/*.{ts,js,md,yml}'",
"get": "cdktf get",
"build": "yarn get && tsc",
"synth": "cdktf synth",
"compile": "tsc --pretty",
"watch": "tsc -w",
"test": "echo ok",
"lint": "npx lint-staged",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next",
"output": "cd cdktf.out && terraform output -json -state ../terraform.tfstate",
"repos": "yarn -s output | jq 'with_entries(select(.key|match(\"providerRepos\";\"i\")))[] | .value'"
},
"engines": {
"node": ">= 18.12.0"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"node_modules",
"scripts"
]
},
"dependencies": {
"@cdktf/provider-github": "^14.2.2",
"cdktf": "^0.20.0",
"cdktf-cli": "^0.20.0",
"change-case": "~4.1.2",
"constructs": "^10.0"
},
"devDependencies": {
"@types/node": "~18",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"eslint": "^8.27.0",
"lint-staged": ">=10",
"prettier": "^3",
"tsx": "^4.0.0",
"typescript": "~5.3.0"
},
"lint-staged": {
"*.{md,yml}": "prettier --write",
"**/*.{ts,js}": [
"eslint",
"prettier --write"
]
},
"terraform": {
"version": "1.9.8"
}
}