-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
44
{
"name": "terraform-cdk-constructs",
"version": "0.0.0",
"main": "main.js",
"types": "main.ts",
"license": "MIT",
"scripts": {
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"jsii:build": "npm run lerna -- exec 'npm run jsii:build'",
"jsii:package": "npm run lerna -- exec 'npm run jsii:package'",
"lerna:build": "lerna run build",
"lerna:install": "npm run lerna -- exec 'npm install'",
"lerna": "lerna"
},
"engines": {
"node": ">=14.0"
},
"devDependencies": {
"@cdktf/provider-google": "^8.0.4",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.0",
"cdktf": "^0.17.1",
"constructs": "^10.2.41",
"jest": "^29.5.0",
"lerna": "^7.0.0",
"prettier": "^2.8.8",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@cdktf/provider-google": "^8.0.4",
"cdktf": "^0.17.1",
"constructs": "^10.2.41"
},
"workspaces": {
"packages": [
"packages/*",
"packages/aws/*",
"packages/google/*"
]
}
}