This repository has been archived by the owner on Dec 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 2.98 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
{
"name": "karen",
"description": "The self-hosted Web IRC client",
"version": "0.0.0",
"preferGlobal": true,
"engines": {
"node": "^9.0.0"
},
"bin": {
"karen": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/karen-irc/karen.git"
},
"scripts": {
"prestart": "npm run build",
"start": "node index.js",
"clean": "make clean -j",
"build_production": "make production -j",
"build_development": "make development -j",
"build": "make build -j",
"test": "make test -j"
},
"keywords": [
"browser",
"web",
"chat",
"client",
"irc",
"server"
],
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "[email protected]",
"web": "https://github.com/Constellation"
},
{
"name": "Tetsuharu OHZEKI",
"email": "[email protected]",
"web": "https://github.com/saneyuki"
}
],
"license": "MIT",
"dependencies": {
"@reactivex/ix-esnext-esm": "^2.3.1",
"@types/js-cookie": "^2.0.28",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.14",
"@types/react": "^16.0.24",
"@types/react-dom": "^16.0.3",
"@types/socket.io-client": "^1.4.29",
"autoprefixer": "^7.1.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-node-env-inline": "^6.8.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-preset-react": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.2",
"commander": "^2.11.0",
"compression": "^1.7.0",
"cpx": "^1.5.0",
"cross-env": "^5.0.1",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"eslint": "^4.2.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-react": "^7.1.0",
"express": "^4.15.3",
"express-session": "^1.15.3",
"font-awesome": "^4.7.0",
"glob": "^7.1.2",
"js-cookie": "^2.1.4",
"jsdom": "^11.1.0",
"mkdirp": "^0.5.1",
"mocha": "^3.4.2",
"moment": "^2.18.1",
"option-t": "^7.0.1",
"postcss": "^6.0.7",
"postcss-cli": "^4.1.0",
"postcss-custom-properties": "^6.1.0",
"postcss-import": "^10.0.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"read": "^1.0.7",
"request": "^2.81.0",
"rxjs": "^5.5.2",
"slate-irc": "^0.9.0",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
"spdy": "^3.4.7",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"tslint": "^5.5.0",
"tslint-language-service": "^0.9.6",
"typescript": "^2.6.1",
"urijs": "^1.18.10",
"webpack": "^3.3.0",
"whatwg-fetch": "^2.0.3",
"yargs": "^8.0.2"
}
}