22aac303c7
The validate script will be added in Task 15 when the full-validation.sh script is created. For now, remove it to prevent npm script execution errors.
18 lines
377 B
JSON
18 lines
377 B
JSON
{
|
|
"name": "aeroflot-flights",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/angular",
|
|
"apps/react",
|
|
"e2e"
|
|
],
|
|
"scripts": {
|
|
"dev:angular": "cd apps/angular && npm start",
|
|
"dev:react": "cd apps/react && npm run dev",
|
|
"dev:both": "concurrently \"npm run dev:angular\" \"npm run dev:react\""
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.0"
|
|
}
|
|
}
|