feat: initialize Discord clone application with core backend services and Electron frontend.

This commit is contained in:
Bryan1029384756
2026-02-09 23:54:49 -06:00
parent e64cf20116
commit 516cfdbbd8
26 changed files with 622 additions and 161 deletions

13
package.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "discord-clone",
"private": true,
"scripts": {
"backend": "node Backend/server.js",
"frontend": "cd Frontend/Electron && npm run dev",
"electron": "cd Frontend/Electron && npm run electron:dev",
"electron:build": "cd Frontend/Electron && npm run electron:build",
"install:backend": "cd Backend && npm install",
"install:frontend": "cd Frontend/Electron && npm install",
"install:all": "cd Backend && npm install && cd ../../Frontend/Electron && npm install"
}
}