This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
forked from thelounge/thelounge
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
112 lines (112 loc) · 3.09 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "thelounge",
"description": "The self-hosted Web IRC client",
"version": "3.0.0",
"preferGlobal": true,
"bin": {
"thelounge": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thelounge/thelounge.git"
},
"homepage": "https://thelounge.chat/",
"scripts": {
"build": "webpack",
"coverage": "run-s test:{client,server} && nyc --nycrc-path=test/.nycrc-report report",
"dev": "run-p watch start",
"lint:css": "stylelint --color \"client/**/*.css\"",
"lint:js": "eslint . --report-unused-disable-directives --color",
"start": "node index start",
"test": "run-p --aggregate-output --continue-on-error lint:* test:{client,server}",
"test:browser": "webpack-dev-server --config=webpack.config-browser.js",
"test:client": "nyc --nycrc-path=test/.nycrc-mocha-webpack mocha-webpack --colors --opts=test/mocha-webpack.opts",
"test:server": "nyc --nycrc-path=test/.nycrc-mocha mocha --colors",
"watch": "webpack --watch"
},
"keywords": [
"lounge",
"browser",
"web",
"chat",
"client",
"irc",
"server",
"thelounge"
],
"license": "MIT",
"engines": {
"node": ">=6.13.0"
},
"dependencies": {
"bcryptjs": "2.4.3",
"chalk": "2.4.2",
"cheerio": "0.22.0",
"commander": "2.19.0",
"express": "4.16.4",
"file-type": "10.7.1",
"filenamify": "2.1.0",
"fs-extra": "7.0.1",
"irc-framework": "4.1.0",
"is-utf8": "0.2.1",
"linkify-it": "2.1.0",
"lodash": "4.17.11",
"mime-types": "2.1.21",
"package-json": "5.0.0",
"read": "1.0.7",
"read-chunk": "3.0.0",
"request": "2.88.0",
"semver": "5.6.0",
"socket.io": "2.2.0",
"socketio-file-upload": "0.7.0",
"thelounge-ldapjs-non-maintained-fork": "1.0.2",
"tlds": "1.203.1",
"ua-parser-js": "0.7.19",
"uuid": "3.3.2",
"web-push": "3.3.3",
"yarn": "1.13.0"
},
"optionalDependencies": {
"sqlite3": "4.0.6"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/preset-env": "7.3.1",
"@fortawesome/fontawesome-free": "5.7.1",
"babel-loader": "8.0.5",
"chai": "4.2.0",
"copy-webpack-plugin": "4.6.0",
"css-loader": "0.28.11",
"css.escape": "1.5.1",
"emoji-regex": "7.0.3",
"eslint": "5.13.0",
"fuzzy": "0.1.3",
"graphql-request": "1.8.2",
"handlebars": "4.0.12",
"handlebars-loader": "1.7.1",
"html-minifier": "3.5.21",
"html-minifier-loader": "1.4.1",
"intersection-observer": "0.5.1",
"istanbul-instrumenter-loader": "3.0.1",
"jquery": "3.3.1",
"jquery-ui": "1.12.1",
"mini-css-extract-plugin": "0.5.0",
"mocha": "5.2.0",
"mocha-loader": "2.0.0",
"mocha-webpack": "2.0.0-beta.0",
"moment": "2.24.0",
"mousetrap": "1.6.2",
"npm-run-all": "4.1.5",
"nyc": "13.2.0",
"primer-tooltips": "2.0.0",
"sinon": "7.2.3",
"socket.io-client": "2.2.0",
"stylelint": "9.10.1",
"stylelint-config-standard": "18.2.0",
"textcomplete": "0.17.1",
"undate": "0.3.0",
"webpack": "4.29.1",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.1.14"
}
}