Hello,
I’m new to netlify and trying to deploy an app that I’ve been working on for a while. Although it works just fine on my local server, it keeps giving me the same error every time I’m trying to deploy it. I’ve already tried to add ‘CI=’ as a variable and add it to the Build Command, but it didn’t help.
I’d appreciate any help,
Thanks!
That’s the log I’m getting over and over again
https://app.netlify.com/sites/nimble-belekoy-b011ad/deploys/62a0d268357eb00077364639
That’s my package.json
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.58",
"@react-oauth/google": "^0.2.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.19.2",
"dotenv": "^16.0.1",
"firebase": "^9.8.1",
"gapi-script": "^1.2.0",
"jwt-decode": "^3.1.2",
"material-ui-chip-input": "^1.1.0",
"moment": "^2.27.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-file-base64": "^1.0.3",
"react-firebase-hooks": "^5.0.3",
"react-google-login": "^5.1.25",
"react-redux": "^7.1.3",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
}
}