Files
the-bible/package.json

27 lines
834 B
JSON

{
"name": "esv-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"
]
}