Files
gnezim 22aac303c7 fix: remove non-existent validate script reference from root package.json
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.
2026-04-05 18:56:48 +03:00

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"
}
}