So my /client/package.json
file looks like this
{
"name": "custom-name",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.8.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.27.2",
"ethers": "^5.6.8",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-lottie-player": "^1.4.3",
"react-oauth-popup": "^1.0.5",
"react-scripts": "5.0.1",
"use-color-thief": "^1.2.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"proxy": "http://localhost:4000",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
and my /server/package.json
looks like this
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"server": "nodemon index.js",
"client": "npm run start --prefix ../client",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.16"
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"concurrently": "^7.2.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"file-type": "^17.1.2",
"node-fetch": "^2.6.1",
"read-chunk": "^4.0.2",
"twitter": "^1.7.1",
"twitter-api-v2": "^1.12.2"
}
}
so what should my build settings be in that case?