-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "notifications",
"version": "1.0.0",
"description": "Subscription notifications for careabout",
"main": "index.js",
"engines": {
"node": "6.3.0"
},
"scripts": {
"start": "node server.js",
"server": "node-inspector --web-port 8888 & nodemon --debug server",
"test": "tape tests/**/*.test.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/careabout/notifications.git"
},
"author": "careabout",
"license": "See license in LICENSE",
"bugs": {
"url": "https://github.com/careabout/notifications/issues"
},
"homepage": "https://github.com/careabout/notifications#readme",
"devDependencies": {
"node-inspector": "^0.12.8",
"nodemon": "^1.10.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.0"
},
"dependencies": {
"body-parser": "^1.15.1",
"cors": "^2.7.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"lodash": "^4.14.1",
"logfmt": "^1.2.0",
"mongodb": "^2.2.5",
"superagent": "^2.1.0"
}
}