-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.11 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
{
"name": "sogmi-website",
"version": "1.0.0",
"license": "MIT",
"author": "Josh Michaels",
"description": "Website for Sons of God Ministries International. Content is pulled from Contentful API and turned into Markdown files for Hugo to render as a static site.",
"repository": "SOGMI/SOGMI.org",
"scripts": {
"prebuild": "contentful-hugo --wait 6000",
"build": "hugo --minify",
"postbuild": "atomic-algolia & npm run compressjs",
"dev": "contentful-hugo && hugo server --disableFastRender",
"minifyjson": "html-minifier --input-dir ./public --output-dir ./public --collapse-whitespace --file-ext json",
"compressjs": "uglifyjs ./public/js/sons-of-god.js --compress --mangle --output ./public/js/sons-of-god.js"
},
"dependencies": {
"atomic-algolia": "^0.3.19",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"instantsearch.js": "^4.75.3",
"minimist": "^1.2.8",
"uglify-js": "^3.19.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"contentful-hugo": "^4.0.2",
"hugo-bin": "^0.116.4",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@9.11.0"
}