Ваша ошибка не в самом пакете, вы можете иметь его глобально или сохранить локально (не --save-dev).
Вы можете найти решение вашей проблемы, посмотрев журнал ошибок.
concurrently - kill-others "npm run server" "npm run client"
sh: concurrently - kill-others: command not found
Команда должна быть либо --kill-others или для краткости -k, вот официальная документация: https://github.com/kimmobrunfeldt/concurrently
Попробуйте это как пакет. json
{
"name": "thesis_fullstack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "cd client && npm start",
"server": "cd server && npm start",
"start": "concurrently --kill-others \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "3.5.1"
}
}
Приветствия:)