-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 930 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 930 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
{
"name": "sendero_interaction_server",
"version": "1.0.0",
"description": "A Node.js + Socket.IO server that receives Sendero Web Clients interactions and multiplexes them to RabbitMQ queues in order to let the corresponding Sendero Client receive them.",
"main": "app.js",
"scripts": {
"serve": "node_modules/nodemon/bin/nodemon.js .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Sendero-Project/SenderoInteractionServer"
},
"author": "Sendero",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sendero-Project/SenderoInteractionServer"
},
"homepage": "https://github.com/Sendero-Project/SenderoInteractionServer#readme",
"dependencies": {
"amqplib": "^0.4.1",
"nodemon": "^1.9.1",
"socket.io": "^1.4.5",
"underscore": "^1.8.3"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}