- Rename project from 'ESV Bible' to 'The Bible' - Implement version selection dropdown in homepage header - Add support for multiple Bible versions: * ESV (English Standard Version) - from mdbible * NKJV (New King James Version) - from local NKJV/ directory - Update all API endpoints to accept version parameter (?version=esv|?version=nkjv) - Add version-aware favorites system that stores and displays Bible version (e.g., 'Genesis 1:1 (ESV)') - Update database schema to include version column in favorites table - Maintain backward compatibility with existing data - Update Docker configuration and documentation
27 lines
834 B
JSON
27 lines
834 B
JSON
{
|
|
"name": "the-bible-project",
|
|
"version": "1.0.0",
|
|
"description": "ESV Bible application with React frontend and Node.js backend",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
|
|
"dev:backend": "cd backend && npm run dev",
|
|
"dev:frontend": "cd frontend && npm start",
|
|
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
|
|
"build:frontend": "cd frontend && npm run build",
|
|
"docker:build": "docker-compose build",
|
|
"docker:up": "docker-compose up",
|
|
"docker:down": "docker-compose down"
|
|
},
|
|
"keywords": ["bible", "esv", "react", "docker", "markdown"],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.0"
|
|
},
|
|
"workspaces": [
|
|
"backend",
|
|
"frontend"
|
|
]
|
|
}
|