-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
59 lines (59 loc) · 2.14 KB
/
package.json
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
57
58
59
{
"name": "mirotalkc2c",
"version": "1.1.42",
"description": "A free WebRTC Cam-2-Cam browser-based video calls",
"main": "server.js",
"scripts": {
"start": "node backend/server.js",
"start-dev": "nodemon backend/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx prettier --write .",
"docker-build": "docker build --tag mirotalk/c2c:latest .",
"docker-rmi": "docker images |grep '<none>' |awk '{print $3}' |xargs docker rmi",
"docker-push": "docker push mirotalk/c2c:latest",
"docker-pull": "docker pull mirotalk/c2c:latest",
"docker-rmc": "docker container rm mirotalkc2c --force",
"docker-run": "docker run -d -p 8080:8080 --name mirotalkc2c mirotalk/c2c:latest",
"docker-rune": "docker run -d -p 8080:8080 -v .env:/src/.env:ro --name mirotalkc2c mirotalk/c2c:latest",
"docker-run-vm": "docker run -d -p 8080:8080 -v .env:/src/.env:ro -v ./frontend/:/src/frontend/:ro -v ./backend/:/src/backend/:ro --name mirotalkc2c mirotalk/c2c:latest",
"docker-start": "docker start mirotalkc2c",
"docker-stop": "docker stop mirotalkc2c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miroslavpejic85/mirotalkc2c"
},
"keywords": [
"c2c",
"webrtc",
"socket.io",
"ngrok",
"video",
"audio",
"cam2cam"
],
"author": "Miroslav Pejic",
"license": "AGPL-3.0",
"homepage": "https://github.com/miroslavpejic85/mirotalkc2c",
"dependencies": {
"@mattermost/client": "^10.1.0",
"colors": "^1.4.0",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-openid-connect": "^2.17.1",
"js-yaml": "^4.1.0",
"ngrok": "^5.0.0-beta.2",
"nodemailer": "^6.9.16",
"socket.io": "^4.8.1",
"swagger-ui-express": "5.0.1",
"uuid": "11.0.3",
"xss": "^1.0.15"
},
"devDependencies": {
"node-fetch": "^3.3.2",
"nodemon": "^3.1.7",
"prettier": "3.3.3"
}
}