quickstarts/tutorials/distributed-calculator/react-calculator/package.json

19 lines
547 B
JSON

{
"name": "react-docker-app",
"version": "1.0.0",
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"buildclient": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"dependencies": {
"express": "^4.17.3",
"axios": "^0.26.0"
},
"devDependencies": {
"concurrently": "^4.0.1"
}
}