-
-
Notifications
You must be signed in to change notification settings - Fork 619
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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
60
61
62
63
64
65
66
67
68
{
"name": "mediasoup-demo-app",
"version": "4.0.0",
"private": true,
"description": "mediasoup demo app",
"author": "Iñaki Baz Castillo <[email protected]>",
"license": "All Rights Reserved",
"main": "src/index.jsx",
"type": "module",
"scripts": {
"start": "cross-env DEV=. vite",
"start:tcp": "cross-env DEV=tcp vite",
"start:vp9": "cross-env DEV=vp9 vite",
"start:h264": "cross-env DEV=h264 vite",
"build": "vite build",
"lint": "eslint --fix --ext=.js,.jsx src && prettier --write --log-level=error src"
},
"dependencies": {
"@babel/runtime": "7.25.7",
"bowser": "2.11.0",
"classnames": "2.2.6",
"clipboard-copy": "3.1.0",
"debug": "4.3.1",
"domready": "1.0.8",
"face-api.js": "0.21.0",
"hark": "1.2.3",
"js-cookie": "2.2.1",
"mediasoup-client": "github:versatica/mediasoup-client#v3",
"pokemon": "2.0.2",
"prop-types": "15.7.2",
"protoo-client": "4.0.5",
"qs": "6.13.1",
"random-string": "0.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "3.3.2",
"react-dropzone": "10.2.1",
"react-redux": "7.2.0",
"react-spinner": "0.2.7",
"react-tooltip": "3.11.1",
"react-transition-group": "4.3.0",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"riek": "1.1.0",
"url-parse": "1.5.9"
},
"devDependencies": {
"@types/node": "20",
"@types/qs": "6.9.17",
"@types/react-dev-utils": "9.0.15",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.20",
"cross-env": "7.0.3",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-react": "7.18.3",
"postcss": "8.4.49",
"postcss-load-config": "6.0.1",
"prettier": "3.3.3",
"react-dev-utils": "12.0.1",
"sass": "1.77.8",
"typescript": "5.2.2",
"vite": "5.4.14",
"wait-port": "1.1.0"
},
"browserslist": "ie 11"
}