-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 858 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "telegram-chat-app",
"version": "1.0.0",
"description": "Telegram-like chat application with React frontend and FastAPI backend",
"main": "index.js",
"scripts": {
"backend": "cd backend && ..\\venv\\Scripts\\python.exe -m uvicorn main:app --reload --host 0.0.0.0 --port 8000",
"frontend": "cd frontend && npm run dev",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ph0que/telegram-chat-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/ph0que/telegram-chat-app/issues"
},
"homepage": "https://github.com/ph0que/telegram-chat-app#readme",
"devDependencies": {
"concurrently": "^9.2.1"
}
}