-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
package.json
104 lines (104 loc) · 2.34 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
{
"name": "lets-chat",
"version": "0.4.8",
"description": "A chat app for small teams.",
"license": "MIT",
"main": "app.js",
"scripts": {
"grunt": "grunt",
"start": "node app.js",
"stop": "pkill --signal SIGINT letschat",
"test": "eslint ."
},
"engine": {
"node": "0.10.x",
"npm": "2.1.x"
},
"repository": {
"type": "git",
"url": "git://github.com/sdelements/lets-chat.git"
},
"author": {
"name": "Houssam Haidar",
"email": "[email protected]"
},
"contributors": [
{
"name": "Simon Bartlett",
"email": "[email protected]"
},
{
"name": "Shawn Gustaw",
"email": "[email protected]"
},
{
"name": "Geoff Whittington",
"email": "[email protected]"
},
{
"name": "Hanif Virani",
"email": "[email protected]"
},
{
"name": "Jeffery Bain",
"email": "[email protected]"
},
{
"name": "Ramanan Sivaranjan",
"email": "[email protected]"
},
{
"name": "Sonny Piers",
"email": "[email protected]"
}
],
"keywords": [
"chat",
"group chat"
],
"bugs": {
"url": "https://github.com/sdelements/lets-chat/issues"
},
"homepage": "https://github.com/sdelements/lets-chat",
"dependencies": {
"async": "^2.0.0",
"bcryptjs": "^2.3.0",
"body-parser": "^1.15.2",
"colors": "~1.1.2",
"compression": "^1.6.2",
"connect-assets": "^5.3.0",
"connect-mongo": "^1.2.1",
"cookie-parser": "^1.4.3",
"express.oi": "0.0.21",
"helmet": "^2.1.1",
"i18n": "^0.8.3",
"js-yaml": "^3.6.1",
"less": "^2.7.1",
"lodash": "^4.13.1",
"md5": "^2.1.0",
"moment": "^2.14.1",
"mongoose": "^4.5.5",
"mongoose-unique-validator": "^1.0.2",
"mongoose-validate": "0.0.5",
"multer": "^1.1.0",
"node-xmpp-server": "^2.2.0",
"node_hash": "^0.2.0",
"nunjucks": "^2.4.2",
"on-finished": "^2.3.0",
"passport": "^0.3.2",
"passport-http": "0.3.0",
"passport-http-bearer": "1.0.1",
"passport-local": "1.0.0",
"passport.socketio": "3.6.2",
"require-directory": "~2.1.1",
"require-tree": "^1.1.1",
"uuid": "^3.0.0"
},
"devDependencies": {
"eslint": "^6.5.1",
"grunt": "~0.4.5",
"grunt-bower": "^0.21.2",
"grunt-bower-task": "~0.4.0",
"grunt-cli": "^1.2.0"
}
}