You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
582B

  1. {
  2. "name": "photos",
  3. "version": "1.0.0",
  4. "description": "Novox photos manager application",
  5. "scripts": {
  6. "bootstrap": "npm ci && cd client && npm ci && cd ../server && npm ci",
  7. "dev": "npm-run-all -p dev-client dev-server",
  8. "dev-client": "cd client && npm run dev",
  9. "dev-server": "cd server && npm run dev",
  10. "build": "npm-run-all -p build-client build-server",
  11. "build-client": "cd client && npm run build",
  12. "build-server": "cd server && npm run build"
  13. },
  14. "author": "",
  15. "license": "ISC",
  16. "dependencies": {
  17. "npm-run-all": "^4.1.5"
  18. }
  19. }