-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 970 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
{
"name": "chatux-server-example",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p start:server start:web",
"start:server": "node ./src/chatux-server.js",
"start:web": "webpack-dev-server"
},
"author": "Tom Misawa <[email protected]> (https://github.com/riversun)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/riversun/chatux-example.git"
},
"bugs": {
"url": "https://github.com/riversun/chatux-example/issues"
},
"homepage": "https://github.com/riversun/chatux-example#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.4",
"express": "^4.17.3",
"npm-run-all": "^4.1.5",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"chatux": "^1.3.0"
}
}