- Hugo site configured and working - Story page with interactive collapsible timeline - CSS styling for journey/timeline layout - JavaScript for dynamic markdown-to-timeline conversion - Theme with responsive design - Content structure for Bitcoin education site Features: - Collapsible year sections with animations - Quick jump navigation between years - Mobile responsive design - Interactive timeline functionality
40 lines
No EOL
1 KiB
JSON
40 lines
No EOL
1 KiB
JSON
{
|
|
"name": "dontbechad",
|
|
"version": "1.0.0",
|
|
"description": "Bitcoin education website - I made the mistakes so you don't have to",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "hugo server -D",
|
|
"build": "hugo --minify",
|
|
"deploy": "netlify deploy --prod --dir=public",
|
|
"preview": "netlify deploy --dir=public",
|
|
"check": "hugo check",
|
|
"optimize": "npm run optimize:css && npm run optimize:js",
|
|
"optimize:css": "cleancss -o static/css/style.min.css static/css/style.css",
|
|
"optimize:js": "terser static/js/script.js -o static/js/script.min.js",
|
|
"serve": "hugo server"
|
|
},
|
|
"keywords": [
|
|
"bitcoin",
|
|
"education",
|
|
"security",
|
|
"mistakes",
|
|
"cryptocurrency",
|
|
"hugo",
|
|
"static-site"
|
|
],
|
|
"author": "Chad",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/yourusername/dontbechad.git"
|
|
},
|
|
"devDependencies": {
|
|
"clean-css-cli": "^5.6.0",
|
|
"terser": "^5.19.0",
|
|
"netlify-cli": "^17.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
}
|
|
} |