forked from thelounge/thelounge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.22 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
{
"name": "thelounge",
"description": "The self-hosted Web IRC client",
"version": "2.7.0-pre.2",
"publishConfig": {
"tag": "next"
},
"preferGlobal": true,
"bin": {
"lounge": "index.js",
"thelounge": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thelounge/lounge.git"
},
"homepage": "https://thelounge.github.io/",
"scripts": {
"coverage": "nyc mocha",
"start": "node index start",
"start-dev": "npm-run-all --parallel watch start",
"build": "webpack",
"watch": "webpack --watch",
"test": "npm-run-all --aggregate-output --parallel --continue-on-error test:* lint:*",
"test:mocha": "mocha --colors",
"lint:js": "eslint . --report-unused-disable-directives --color",
"lint:css": "stylelint --color --report-needless-disables=error \"client/**/*.css\""
},
"keywords": [
"lounge",
"browser",
"web",
"chat",
"client",
"irc",
"server"
],
"license": "MIT",
"engines": {
"node": ">=4.2.0"
},
"dependencies": {
"bcryptjs": "2.4.3",
"cheerio": "0.22.0",
"colors": "1.1.2",
"commander": "2.12.2",
"express": "4.16.2",
"fs-extra": "4.0.3",
"irc-framework": "2.10.2",
"ldapjs": "1.0.1",
"lodash": "4.17.4",
"moment": "2.19.3",
"package-json": "4.0.1",
"read": "1.0.7",
"request": "2.83.0",
"semver": "5.4.1",
"socket.io": "2.0.4",
"spdy": "3.4.7",
"ua-parser-js": "0.7.17",
"urijs": "1.19.0",
"web-push": "3.2.5"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-env": "1.6.1",
"chai": "4.1.2",
"copy-webpack-plugin": "4.2.3",
"css.escape": "1.5.1",
"emoji-regex": "6.5.1",
"eslint": "4.13.0",
"font-awesome": "4.7.0",
"fuzzy": "0.1.3",
"graphql-request": "1.4.0",
"handlebars": "4.0.11",
"handlebars-loader": "1.6.0",
"intersection-observer": "0.5.0",
"jquery": "3.2.1",
"jquery-ui": "1.12.1",
"mocha": "4.0.1",
"mousetrap": "1.6.1",
"npm-run-all": "4.1.2",
"nyc": "11.3.0",
"socket.io-client": "2.0.4",
"stylelint": "8.3.1",
"stylelint-config-standard": "18.0.0",
"textcomplete": "0.14.5",
"webpack": "3.10.0"
}
}