-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 847 Bytes
/
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
{
"name": "SocketIO-Openshift-Example",
"version": "1.0.0",
"description": "socketio-openshift-example",
"keywords": [
"openshift",
"Node.js",
"websocket",
"nodebooks",
"nodejs"
],
"author": {
"name": "Jaakko Vanhala",
"email": "nodebooks@gmail.com",
"url": "https://leanpub.com/jvanhalen"
},
"homepage": "https://leanpub.com/jvanhalen",
"repository": {
"type": "git",
"url": "https://www.github.com/nodebooks"
},
"engines": {
"node": ">= 0.10.0",
"npm": ">= 1.0.0"
},
"dependencies": {
"bluebird": "^3.4.2",
"express": "^4.14.0",
"jsonwebtoken": "^7.1.9",
"mongoose": "^4.5.10",
"socket.io": "^1.0.6"
},
"devDependencies": {},
"bundleDependencies": [],
"private": true,
"main": "server.js",
"scripts": {
"start": "node server.js"
}
}