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

20 lines
533 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 run build"
},
"dependencies": {
"axios": "^1.7.2",
"express": "^4.17.3"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.4"
}
}