-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 2.2 KB
/
package.json
File metadata and controls
executable file
·66 lines (66 loc) · 2.2 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@prefapp/firestartr-provisioner",
"version": "0.0.0",
"main": "dist/index.js",
"types": "main.ts",
"license": "MPL-2.0",
"private": true,
"scripts": {
"get": "cdktf get",
"build": "tsc --build",
"build-cdktf": "tsc -p tsconfig.cdktf.json && ncc build --source-map dist-cdktf/client.js -o dist-cdktf",
"synth": "cdktf synth",
"compile": "tsc --build",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"synth-component": "ts-node deploy-artifact.ts",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next",
"set-status-component": "ts-node initializers/CommandLine.ts status",
"scaffold-repo": "ts-node initializers/CommandLine.ts scaffolding",
"reconcile": "ts-node initializers/CommandLine.ts reconcile",
"reconcile-after-delete": "ts-node initializers/CommandLine.ts reconcile-after-delete",
"update": "ts-node initializers/CommandLine.ts update",
"prepare-features": "ts-node initializers/CommandLine.ts prepare-features",
"install-feature": "install-feature",
"lint": "gts lint || exit 0",
"clean": "gts clean",
"fix": "gts fix **/*.ts",
"prepar": "npm run compile",
"pretest": "npm run compile"
},
"engines": {
"node": ">=14.0"
},
"dependencies": {
"@cdktf/provider-aws": "^18.0.6",
"@cdktf/provider-azurerm": "^11.0.4",
"@cdktf/provider-github": "12.0.0",
"@prefapp/firestartr-catalog_common": "0.0.2",
"@prefapp/firestartr-terraform_provisioner": "0.0.1",
"cdktf": "^0.19.0",
"cdktf-cli": "^0.19.0",
"constructs": "^10.0.113",
"@prefapp/firestartr-features_preparer": "0.0.1",
"@prefapp/firestartr-github": "0.0.1",
"js-yaml": "^4.1.0",
"jsonschema": "^1.4.0",
"lodash": "^4.17.21",
"octokit": "^2.0.7",
"uuid": "^9.0.0",
"debug": "^4.3.4",
"@types/debug": "^4.1.8",
"@types/jest": "29.5.4",
"@types/lodash": "^4.14.200",
"@types/mustache": "^4.2.2",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.6",
"fast-json-patch": "^3.1.1",
"jest": "29.6.4",
"mustache": "^4.2.0",
"ts-jest": "29.1.1",
"ts-node": "^10.7.0",
"typescript": "5.5.4"
}
}