-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.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
{
"name": "hartza-capital-website",
"version": "1.0.0",
"description": "Hugo static site for Hartza Capital with dynamic header generation",
"scripts": {
"dev": "npm run headers && hugo server -D",
"build": "npm run pre-build && node scripts/hugo-build.js",
"build:production": "npm run pre-build && node scripts/hugo-build.js --production",
"pre-build": "node scripts/pre-build.js",
"headers": "node scripts/generate-headers.js",
"clean": "hugo mod clean",
"serve": "npm run headers && hugo server -D --bind 0.0.0.0",
"deploy": "npm run build:production",
"postinstall": "npm run headers",
"optimize:images": "node scripts/convert-to-webp.js",
"optimize:images:preview": "node scripts/convert-to-webp-dry-run.js",
"optimize:all": "npm run optimize:images && npm run headers"
},
"repository": {
"type": "git",
"url": "https://github.com/hartza-capital/website"
},
"keywords": [
"hugo",
"fintech",
"static-site",
"cdn",
"headers"
],
"author": "Hartza Capital",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"imagemin": "^9.0.1",
"imagemin-webp": "^8.0.0",
"sharp": "^0.33.0"
}
}