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
|
{
"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.12.1",
"bootstrap": "^4.4.1",
"jquery": "^3.4.1",
"jquery-ui": "^1.12.1",
"popper.js": "^1.16.1",
"webrtc-adapter": "^7.5.1"
},
"devDependencies": {
"autoprefixer": "^9.7.4",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^5.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"js-beautify": "^1.10.3",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}
|