-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.08 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "rtms-zcc-zoom-app",
"version": "1.0.0",
"description": "Minimal working ZCC RTM Zoom App with OAuth, RTMS, and transcript capture",
"private": true,
"scripts": {
"preinstall": "echo 'Installing dependencies for all services...'",
"install:all": "npm run install:frontend && npm run install:backend && npm run install:rtms && echo 'All dependencies installed'",
"install:frontend": "cd frontend && npm install",
"install:backend": "cd backend && npm install",
"install:rtms": "cd rtms && npm install",
"start": "echo 'Starting Docker containers... Access at: http://localhost:3001 | Run ngrok: npm run ngrok' && docker-compose up",
"stop": "docker-compose down",
"dev:local": "concurrently -n \"FRONTEND,BACKEND,RTMS\" -c \"cyan,green,magenta\" \"npm run dev:frontend\" \"npm run dev:backend\" \"npm run dev:rtms\"",
"dev:frontend": "cd frontend && PORT=3000 npm start",
"dev:backend": "cd backend && nodemon server.js",
"dev:rtms": "cd rtms && nodemon server.js",
"build": "cd frontend && npm run build",
"logs": "docker-compose logs -f",
"logs:frontend": "docker-compose logs -f frontend",
"logs:backend": "docker-compose logs -f backend",
"logs:rtms": "docker-compose logs -f rtms",
"rebuild": "docker-compose down -v && docker-compose build && docker-compose up",
"clean": "docker-compose down -v && docker system prune -f",
"clean:data": "rm -rf rtms/data/audio/* && rm -rf rtms/data/transcripts/*",
"health": "curl http://localhost:3001/health",
"ngrok": "ngrok http 3001",
"test": "cd frontend && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/zoom/rtms-zcc-sample.git"
},
"keywords": [
"zoom",
"zoom-apps",
"rtms",
"real-time-media-streams",
"transcripts",
"zoom-contact-center",
"zcc"
],
"author": "Zoom Communications, Inc.",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.11"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"ws": "^8.19.0"
}
}