-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 966 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
{
"name": "messages-queue",
"version": "0.0.1",
"description": "Messages queue service, allows to queue and manage notifications",
"main": "app/app.js",
"scripts": {
"start": "nodemon app/app.js",
"test": "mocha --recursive"
},
"author": "Bartosz Herba",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"config": "^1.30.0",
"express": "^4.16.2",
"helmet": "^3.11.0",
"http-status": "^1.0.1",
"mongoose": "^5.0.7",
"socket.io": "^2.0.4",
"swagger-jsdoc": "^1.9.7"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.0.1",
"nodemon": "^1.17.1",
"sinon": "^4.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartoszherba/messages-service.git"
},
"bugs": {
"url": "https://github.com/bartoszherba/messages-service/issues"
},
"homepage": "https://github.com/bartoszherba/messages-service#readme"
}