-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1022 Bytes
/
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
{
"name": "react-chatroom",
"version": "1.0.0",
"description": "This is a simple Chat Room with ReactJS and Socket.IO",
"main": "./src/index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development --host 127.0.0.1 --port 3000",
"build": "webpack --mode production"
},
"author": "Mohammad Esmaeilzadeh - bugless.ir@yahoo.com",
"license": "ISC",
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"html-webpack-plugin": "^3.0.7",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}