-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
151 lines (151 loc) Β· 4.22 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "hackersandslackers",
"description": "A clean, minimal theme for Ghost CMS",
"version": "0.0.1",
"engines": {
"ghost": ">=5.0.0"
},
"license": "MIT",
"screenshots": {
"desktop": "assets/screenshot-desktop.jpg",
"mobile": "assets/screenshot-mobile.jpg"
},
"scripts": {
"dev": "webpack --mode=development",
"test": "gscan .",
"test:ci": "gscan --fatal --verbose .",
"pretest": "webpack --mode=production",
"preship": "yarn test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version && git push --follow-tags; else echo \"Uncommitted changes found.\" && exit 1; fi",
"postship": "git fetch && webpack --mode=production",
"build": "webpack --mode=production"
},
"author": {
"name": "hackersandslackers",
"email": "hello@hackersandslackers.com",
"url": "https://hackersandslackers.com/"
},
"gpm": {
"type": "theme",
"categories": [
"Minimal",
"Magazine"
]
},
"keywords": [
"ghost",
"theme",
"ghost-theme",
"blog"
],
"repository": {
"type": "git",
"url": "https://github.com/hackersandslackers/hackersandslackers-theme.git"
},
"bugs": "https://github.com/hackersandslackers/hackersandslackers-theme/issues",
"contributors": [
"https://github.com/hackersandslackers/hackersandslackers-theme/graphs/contributors"
],
"dependencies": {
"@rocktimsaikia/github-card": "^3.0.1",
"@tryghost/release-utils": "0.8.1",
"axios": "^1.7.9",
"babel-plugin-prismjs": "^2.1.0",
"basiclightbox": "^5.0.4",
"dotenv": "^16.4.7",
"dotenv-webpack": "^8.1.0",
"github-profile-card": "^3.1.0",
"prismjs": "^1.29.0"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"babel-loader": "^9.2.1",
"babel-plugin-import": "^1.13.8",
"babel-plugin-module-resolver": "^5.0.2",
"beeper": "3.0.0",
"css-loader": "^7.1.2",
"cssnano": "7.0.6",
"font-config-webpack-plugin": "^2.0.3",
"inquirer": "12.3.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.5.1",
"postcss-easy-import": "4.0.0",
"postcss-loader": "^8.1.1",
"pump": "3.0.2",
"sass": "^1.79.3",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"browserslist": [
"defaults"
],
"config": {
"posts_per_page": 10,
"image_sizes": {
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1000
},
"xl": {
"width": 2000
}
},
"card_assets": true
},
"custom": {
"navigation_layout": {
"type": "select",
"options": [
"Logo in the middle",
"Logo on the left",
"Stacked"
],
"default": "Logo in the middle"
},
"site_background_color": {
"type": "color",
"default": "#ffffff"
},
"header_and_footer_color": {
"type": "select",
"options": [
"Background color",
"Accent color"
],
"default": "Background color"
},
"show_author": {
"type": "boolean",
"default": true,
"group": "homepage"
},
"show_publish_date": {
"type": "boolean",
"default": true,
"group": "homepage"
},
"show_publication_info_sidebar": {
"type": "boolean",
"default": false,
"group": "homepage"
},
"posts_per_series_page": 12
},
"renovate": {
"extends": [
"@tryghost:theme"
]
}
}