add dev command to repository root

This commit is contained in:
sam 2024-09-17 20:58:31 +02:00
parent bb76c24017
commit 6388e3127d
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
5 changed files with 186 additions and 2 deletions

8
package.json Normal file
View file

@ -0,0 +1,8 @@
{
"devDependencies": {
"concurrently": "^9.0.1"
},
"scripts": {
"dev": "concurrently -n .net,node,rate -c magenta,yellow,blue -i 'cd Foxnouns.Backend && dotnet watch --no-hot-reload' 'cd Foxnouns.Frontend && yarn dev' 'cd rate && go run -v .'"
}
}