{ "name": "simple-picture-gallery", "version": "0.0.1", "license": "MIT", "dependencies": { "concurrently": "7.2.1", "npm-check-updates": "^17.0.6" }, "scripts": { "install-all": "npm i && concurrently npm:install:client npm:install:server", "install:client": "cd picture-gallery-client && npm i", "install:server": "cd picture-gallery-server && npm i", "start-all": "concurrently npm:run:client npm:run:server", "run:client": "npm run --prefix picture-gallery-client client:run", "run:server": "npm run --prefix picture-gallery-server server:run", "update:client": "ncu --cwd picture-gallery-client", "update:server": "ncu --cwd picture-gallery-server", "docker:buildImage": "docker build . -t simple-picture-gallery" } }