-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 857 Bytes
/
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
{
"name": "terraform",
"version": "1.0.0",
"main": "build/main.js",
"types": "main.ts",
"license": "MPL-2.0",
"private": true,
"scripts": {
"build": "tsc",
"cdktf": "cdktf",
"compile": "tsc --pretty",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"transcrypt": "./scripts/transcrypt",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next"
},
"engines": {
"node": ">=14.0"
},
"dependencies": {
"cdktf": "^0.14.3",
"constructs": "^10.1.219",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"cdktf-cli": "^0.14.3",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
}
}