-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 858 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 858 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
32
33
34
35
{
"name": "infra",
"version": "1.0.0",
"main": "main.js",
"types": "main.ts",
"license": "MPL-2.0",
"private": true,
"scripts": {
"get": "cdktf get",
"build": "tsc --noEmit",
"synth": "cdktf synth",
"compile": "tsc --pretty",
"watch": "tsc -w",
"prettier:write": "prettier --write constructs/",
"upgrade": "yarn add cdktf@latest cdktf-cli@latest",
"upgrade:next": "yarn cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=22.0"
},
"dependencies": {
"@cdktf/provider-aws": "21.18.0",
"cdktf": "0.21.0",
"cdktf-cli": "0.21.0",
"constructs": "10.4.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.13.12",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.7.0"
}