forked from pplexed/socketio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 999 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
33
34
35
36
37
38
{
"name": "socketio",
"version": "1.0.0",
"description": "practicing with socket-io",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"react-dev": "webpack --watch --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pplexed/socketio.git"
},
"author": "Chris Floyd",
"license": "ISC",
"bugs": {
"url": "https://github.com/pplexed/socketio/issues"
},
"homepage": "https://github.com/pplexed/socketio#readme",
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"nodemon": "^2.0.12",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
}
}