-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 902 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": "v2",
"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",
"deploy": "cdktf deploy cloudflareZones lshayCc lshayDev lshayLand lshayOrg lshayXyz",
"compile": "tsc --pretty",
"test": "jest",
"test:watch": "jest --watch",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next",
"format": "prettier --write --check ."
},
"engines": {
"node": ">=16.0"
},
"dependencies": {
"@cdktf/provider-cloudflare": "8.0.3",
"cdktf": "^0.17.3",
"constructs": "^10.2.69",
"zod": "^3.21.4"
},
"devDependencies": {
"@lshay/prettier-config": "^0.6.0",
"@types/node": "^20.4.9",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"prettier": "@lshay/prettier-config"
}