-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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": "external-dns",
"version": "1.0.0",
"main": "main.js",
"types": "main.ts",
"private": true,
"scripts": {
"get": "cdktf get",
"build": "tsc",
"synth": "cdktf synth",
"compile": "tsc --pretty",
"watch": "tsc -w",
"lint:base": "eslint . --ext .ts",
"lint": "yarn lint:base --fix",
"format": "prettier --write '**/*.{ts,js,json,yaml,yml}'"
},
"engines": {
"node": ">=18.0"
},
"dependencies": {
"@cdktf/provider-aws": "^19.27.0",
"cdktf": "^0.12.0",
"constructs": "^10.1.59"
},
"devDependencies": {
"@osskit/eslint-config": "^1.0.7",
"@osskit/prettier-config": "^0.0.1",
"@osskit/tsconfig": "^0.0.6",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"cdktf-cli": "^0.12.0",
"eslint": "^8.20.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unicorn": "^43.0.2",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}