-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 976 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 976 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
28
29
30
31
32
33
34
35
{
"name": "uc-hub",
"version": "0.1.0",
"description": "Unified Communications Hub integrating multiple platforms with AI features",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"start": "cd backend && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Defi-Oracle-Tooling/uc-hub.git"
},
"keywords": [
"unified-communications",
"ai",
"translation",
"meeting-summary",
"voice-cloning"
],
"author": "Defi Oracle Tooling",
"license": "MIT",
"dependencies": {
"concurrently": "^8.2.0"
},
"devDependencies": {
"jest": "^29.5.0"
}
}