-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "webrtc-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "14.x",
"yarn": "1.x"
},
"scripts": {
"clean": "rm dist/bundle.js",
"dev": "webpack serve -hot --mode development",
"start": "node index.js",
"build-dev": "webpack --mode development",
"build": "webpack --mode production"
},
"dependencies": {
"@babel/runtime": "^7.12.1",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"eventemitter3": "^4.0.7",
"express": "^4.17.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"regenerator": "^0.14.7",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@hot-loader/react-dom": "^17.0.0+4.13.0",
"babel-loader": "^8.1.0",
"eslint": "^7.12.1",
"eslint-plugin-react": "^7.21.5",
"html-webpack-plugin": "^4.5.0",
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
}
}