-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "html-chat",
"description": "HTML IRC chat client for Eterna (eternagame.org)",
"dependencies": {
"jquery": "^3.6.3",
"jquery-ui": "^1.13.2",
"malihu-custom-scrollbar-plugin": "github:luxaritas/malihu-custom-scrollbar-plugin#bda645721d2ff82bc",
"markdown-it": "^13.0.1",
"sockjs-client": "^1.6.1",
"ui-contextmenu": "^1.18.1"
},
"devDependencies": {
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"start": "webpack-dev-server --env target=dev",
"build:dev": "webpack --env target=dev --progress",
"build:prod": "webpack --env target=prod --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EteRNAgame/HTML-Chat.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/EteRNAgame/HTML-Chat/issues"
},
"homepage": "https://github.com/EteRNAgame/HTML-Chat#readme"
}