forked from alecksmart/chat-express.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "chat.io",
"version": "1.0.0",
"description": "A Real Time Chat Application built using Node.js, Express, Mongoose, Socket.io, Passport, & Redis.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"url": "git+https://github.com/OmarElGabry/chat.io.git",
"type": "git"
},
"author": "Omar El Gabry <omar.elgabry.93@gmail.com> (http://omarelgabry.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/OmarElGabry/chat.io/issues"
},
"homepage": "https://github.com/OmarElGabry/chat.io",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"ejs": "^2.5.1",
"express": "^4.14.0",
"express-session": "^1.14.0",
"file-type": "^3.8.0",
"mongoose": "^4.5.9",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"read-chunk": "^2.0.0",
"redis": "^2.6.2",
"socket.io": "^1.4.8",
"socket.io-redis": "^1.0.0",
"socketio-file-upload": "^0.4.7",
"winston": "^2.2.0"
},
"devDependencies": {
"debug": "^2.1.1",
"bufferutil": "^1.2.1",
"grunt": "^1.0.1",
"grunt-autoprefixer": "^3.0.4",
"grunt-browserify": "^5.0.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-less": "^1.3.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-run": "^0.6.0",
"utf-8-validate": "^1.2.1"
}
}