-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 812 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 812 Bytes
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
{
"name": "chat-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --debug src/server.js",
"start": "node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"async": "^2.1.4",
"bluebird": "^3.4.7",
"body-parser": "^1.16.0",
"express": "^4.14.0",
"express-cors": "0.0.3",
"express-jwt": "^5.1.0",
"express-unless": "^0.3.0",
"jsonwebtoken": "^7.2.1",
"microtime": "^2.1.2",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"redis": "^2.6.3",
"socket.io": "^1.7.2",
"socketio-jwt": "^4.5.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
}
}