-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 KB
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": "websocket-sample-chat",
"version": "1.0.0",
"description": "websocket using node ws library",
"main": "server.js",
"scripts": {
"test": "jest",
"dev": "webpack --mode development",
"start": "nodemon ./wsserver/server.js | webpack serve --mode development --open",
"server": "nodemon ./wsserver/server.js",
"client": "webpack serve --mode development --open",
"build": "webpack --mode production"
},
"keywords": [
"ws",
"websocket",
"sample project"
],
"author": "Jason Ko",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"nodemon": "^2.0.7",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"jquery": "^3.5.1",
"ws": "^7.3.1"
},
"nodemonConfig": {
"watch": [
"./wsserver"
],
"delay": "2500"
}
}