This commit is contained in:
talorr
2026-03-27 03:36:08 +03:00
parent 8a97ce6d54
commit cda36918e8
225 changed files with 35641 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "betting-signals-platform",
"private": true,
"version": "0.1.0",
"workspaces": [
"backend",
"chat-service",
"frontend"
],
"scripts": {
"dev": "npm run dev -w backend",
"dev:backend": "npm run dev -w backend",
"dev:chat": "npm run dev -w chat-service",
"dev:frontend": "npm run dev -w frontend",
"dev:parser": "npm --prefix parser run dev",
"build": "npm run build -w backend && npm run build -w chat-service && npm run build -w frontend"
}
}