-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "webrtc-video-room",
"version": "2.0.4",
"description": "WebRTC Video Room is a Single-Page App in React using React Router that provides peer-to-peer video and audio communication in a web browser with minimum dependencies required.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dondido/webrtc-video-room.git"
},
"scripts": {
"start": "node server.js",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"postinstall": "webpack --mode production"
},
"author": "Dian Dimitrov",
"keywords": [
"WebRTC Video Chat",
"RTCPeerConnection",
"React"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.3.0",
"css-loader": "^6.7.3",
"style-loader": "^3.3.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"compression": "^1.7.2",
"express": "^4.19.2",
"react": "^16.4.0",
"react-dom": ">=16.7.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"serve-favicon": "^2.5.0",
"socket.io": "^4.7.1",
"socket.io-client": "^4.7.1"
}
}