Spaces:
Sleeping
Sleeping
| { | |
| "name": "lyvuha-portfolio", | |
| "version": "1.0.0", | |
| "description": "Full-stack portfolio and product showcase for lyvuha.com", | |
| "main": "index.js", | |
| "scripts": { | |
| "install:backend": "cd backend && npm install", | |
| "install:frontend": "cd frontend && npm install", | |
| "install-all": "npm install && npm run install:backend && npm run install:frontend", | |
| "dev:backend": "cd backend && npm run dev", | |
| "dev:frontend": "cd frontend && npm run dev", | |
| "dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"", | |
| "build:frontend": "cd frontend && npm run build", | |
| "build": "npm run build:frontend", | |
| "start": "cd backend && npm start" | |
| }, | |
| "dependencies": { | |
| "concurrently": "^8.2.2" | |
| } | |
| } | |