-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.78 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
{
"name": "webrtc-group-chat-demo",
"version": "1.0.0",
"description": "A web application to realize P2P features including video calling, screen sharing, text messaging and file transceiving with low lantency",
"main": "index.jsx",
"scripts": {
"start": "npm run express & npm run dev",
"express": "nodemon ./express_server/server.js",
"dev": "webpack serve --mode=development --config=./webpack/webpack.config.js",
"build": "webpack --mode=production --config=./webpack/webpack.config.js",
"analyze": "webpack --mode=production --env analyzer --config=./webpack/webpack.config.js"
},
"keywords": [
"webrtc"
],
"author": "MingDongShenSen",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@reduxjs/toolkit": "^1.9.0",
"axios": "^0.27.2",
"babel-loader": "^9.1.2",
"babel-plugin-styled-components": "^2.0.7",
"body-parser": "^1.20.1",
"chalk": "^4.1.2",
"core-js": "^3.29.1",
"css-loader": "^6.7.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"html-webpack-plugin": "^5.5.0",
"mongoose": "^6.8.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"react": "18.0",
"react-dom": "18.0",
"react-loader-spinner": "^5.3.4",
"react-redux": "^8.0.5",
"react-refresh": "^0.13.0",
"react-router": "^6.4.3",
"react-router-dom": "^6.8.2",
"style-loader": "^3.3.1",
"styled-components": "^5.3.6",
"uuid": "^9.0.0",
"webpack": "^5.72.1",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webrtc-group-chat-client": "^0.0.1-beta.3",
"ws": "^8.11.0"
}
}