Initial Firmware chat web app

This commit is contained in:
kdusek
2026-01-27 02:01:40 +01:00
commit c716699a66
18 changed files with 4818 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "firmware-chat-web",
"private": true,
"workspaces": [
"server",
"web"
],
"scripts": {
"dev": "concurrently -n server,web -c blue,green \"npm -w server run dev\" \"npm -w web run dev\"",
"build": "npm -w web run build",
"start": "npm -w server run start",
"lint": "npm -w server run lint && npm -w web run lint"
},
"devDependencies": {
"concurrently": "^9.0.0"
}
}