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": "@arthurdejong/webchat",
"version": "0.0.0",
"description": "Simple web chat application",
"private": true,
"homepage": "https://arthurdejong.org/webchat/",
"author": "Arthur de Jong <arthur@arthurdejong.org> (https://arthurdejong.org/)",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "webpack --mode production",
"dev-build": "webpack --mode development --watch",
"eslint": "eslint src/**/*.js *.js",
"htmlfix": "js-beautify -r -f src/index.html --type html --indent-size 2 --end-with-newline"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"bootstrap": "^4.6.0",
"jquery": "^3.6.0",
"jquery-ui": "^1.12.1",
"popper.js": "^1.16.1",
"webrtc-adapter": "^8.1.0"
},
"devDependencies": {
"autoprefixer": "^10.3.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"js-beautify": "^1.14.0",
"mini-css-extract-plugin": "^2.2.0",
"node-sass": "^6.0.1",
"postcss-loader": "^6.1.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2"
}
}
|