dontbechad/package.json
Chad 32264deb5a Initial commit: Complete Hugo site with interactive story timeline
- 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
2026-01-18 16:23:55 -06:00

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"
}
}