-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "curioinfra",
"version": "1.0.0",
"main": "main.js",
"types": "main.ts",
"type": "module",
"license": "MPL-2.0",
"private": true,
"scripts": {
"format": "biome format --write . && biome lint --apply-unsafe . && prettier --write .",
"get": "cdktf get",
"build": "tsc",
"synth": "cdktf synth",
"compile": "tsc --pretty",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"upgrade": "pnpm install cdktf@latest cdktf-cli@latest",
"upgrade:next": "pnpm install cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=18.0"
},
"packageManager": "pnpm@9.6.0",
"dependencies": {
"@cdktf/provider-github": "^14.3.1",
"@cdktf/provider-google": "^13.32.1",
"@cdktf/provider-google-beta": "^13.25.1",
"@curioswitch/cdktf-constructs": "github:curioswitch/cdktf-constructs#main",
"cdktf": "^0.20.9",
"constructs": "^10.4.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.6",
"cdktf-cli": "^0.20.9",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}