-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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": "tasukeinfra",
"version": "1.0.0",
"main": "main.js",
"type": "module",
"types": "main.ts",
"license": "MIT",
"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.2.3",
"@cdktf/provider-google": "^13.30.0",
"@cdktf/provider-google-beta": "^13.23.0",
"@cdktf/provider-random": "^11.0.2",
"@curioswitch/cdktf-constructs": "github:curioswitch/cdktf-constructs#main",
"cdktf": "^0.20.8",
"constructs": "^10.3.0"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.10",
"cdktf-cli": "^0.20.8",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-jest": "^29.1.2",
"tsx": "^4.16.2",
"typescript": "^5.4.5"
}
}