package.json 721 B

12345678910111213141516171819
  1. {
  2. "name": "byop-sample-app",
  3. "version": "1.0.0",
  4. "description": "Sample multi-component application for testing BYOP engine",
  5. "main": "index.js",
  6. "scripts": {
  7. "install-all": "npm install && cd frontend && npm install && cd ../backend && npm install",
  8. "dev": "docker-compose up -d",
  9. "dev-local": "concurrently \"cd backend && npm run dev\" \"cd frontend && npm start\"",
  10. "build": "cd frontend && npm run build && cd ../backend && npm run build",
  11. "test": "echo \"Error: no test specified\" && exit 1"
  12. },
  13. "keywords": ["byop", "docker", "react", "nodejs", "postgresql", "microservices"],
  14. "author": "BYOP Team",
  15. "license": "MIT",
  16. "devDependencies": {
  17. "concurrently": "^7.6.0"
  18. }
  19. }