-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.97 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "truesparrow-ghost",
"version": "1.0.0",
"description": "Host Ghost server in AWS ECS and provision to host static files on AWS S3",
"main": "./dist/src/run.js",
"scripts": {
"dev": "ts-node ./src/run.ts",
"build": "tsc",
"get": "cdktf get",
"diff": "cdktf diff",
"auto-deploy": "cdktf deploy --auto-approve",
"auto-destroy": "cdktf destroy --auto-approve",
"output": "cdktf output",
"synth": "cdktf synth",
"compile": "tsc --pretty",
"watch": "cdktf get && tsc -w",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next",
"format": "prettier --write \"src/**/*\"",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrueSparrowSystems/ghost-hosting-cli.git"
},
"keywords": [
"ghost",
"blog",
"aws",
"terraform",
"cdktf",
"devops"
],
"author": "True Sparrow",
"license": "MIT",
"bugs": {
"url": "https://github.com/TrueSparrowSystems/ghost-hosting-cli/issues"
},
"homepage": "https://github.com/TrueSparrowSystems/ghost-hosting-cli#readme",
"dependencies": {
"@cdktf/provider-aws": "8.0.12",
"cdktf": "0.11.2",
"cdktf-cli": "0.11.2",
"chalk": "4.1.2",
"commander": "9.3.0",
"constructs": "10.1.37",
"psl": "1.9.0",
"readline-sync": "1.4.10",
"shelljs": "0.8.5"
},
"devDependencies": {
"@types/jest": "28.1.1",
"@types/node": "17.0.42",
"@types/psl": "1.1.0",
"@types/readline-sync": "1.4.4",
"@types/shelljs": "0.8.11",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"eslint": "8.22.0",
"jest": "28.1.1",
"prettier": "2.6.2",
"ts-jest": "28.0.4",
"ts-node": "10.8.1",
"typescript": "4.7.3"
},
"files": [
"dist/**/*"
],
"bin": {
"truesparrow-ghost": "./dist/src/run.js"
}
}