Есть следующая структура проекта:
При команде npm run build - ошибка
Запуск команды осуществляется в корне проекта(папка react flt.by), в этой же папке следующий package.json
{
"name": "FLT",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon server.js",
"client": "cd client && npm run start",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"main_sectionku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aos": "^2.3.4",
"body-parser": "^1.19.0",
"concurrently": "^4.1.0",
"express": "^4.17.1",
"nodemailer": "^6.2.1",
"nodemon": "^1.19.1",
"react-addons-css-transition-group": "^15.6.2",
"react-loading-skeleton": "^1.1.2",
"react-skroll": "^0.7.2",
"react-transition-group": "^4.1.0"
}
}
Как сделать build проекта?