-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1000 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1000 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
{
"name": "simple-react-mediasoup",
"version": "1.0.0",
"scripts": {
"client": "webpack-dev-server --config ./client/webpack.config.js --open --mode development --env standaloneclient",
"server": "node server/server.js",
"start": "webpack --config ./client/webpack.config.js --mode production && node server/server.js"
},
"keywords": [
"mediasoup",
"react",
"webrtc"
],
"description": "A simple nodejs mediasoup application with a react frontend",
"dependencies": {
"debug": "^4.3.7",
"express": "^4.19.2",
"mediasoup": "^3.15.1",
"mediasoup-client": "^3.7.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"babel-loader": "^9.1.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}