-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "chat-app",
"version": "1.0.0",
"description": "QuickSocket Example Node Application",
"main": "index.js",
"author": "QuickSocket",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ben-hoggan/chat-app.git"
},
"scripts": {
"start": "run-p build:client build:server",
"build:client": "npm run webpack -- --watch",
"build:server": "nodemon --watch server server/index.js",
"webpack": "webpack --config ./client/webpack.config.js"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"dependencies": {
"@quicksocket/usewebsocket": "^3.0.0",
"axios": "^0.27.2",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"js-base64": "^3.7.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.5",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}