-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "notification-d",
"version": "0.1.0",
"revision": "inDev",
"description": "",
"main": "index.js",
"bin": {
"notification-d": "./bin/notification-d",
"notification-d-explain-config": "./bin/notification-d-explain-config"
},
"scripts": {
"start": "./bin/notification-d",
"test": "mocha --bail test/*.spec.js",
"dev": "nodemon ./bin/notification-d",
"debug-start": "node-debug ./bin/notification-d",
"debug-test": "node-debug _mocha test/*.spec.js",
"cover": "istanbul cover _mocha test/*.spec.js",
"eslint": "eslint . --ext .js",
"explain-config": "./bin/notification-d-explain-config"
},
"dependencies": {
"async": "^2.0.1",
"aws-sdk": "^2.7.13",
"bcrypt": "^1.0.0",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-rest-api": "^0.1.0",
"figlet": "^1.1.2",
"milieu": "^1.7.0",
"mongoose": "^4.5.10",
"mongoose-count-and-find": "^1.0.0",
"mongoose-cu-timestamps": "^1.0.0",
"mongoose-document-slugs": "^1.1.0",
"mongoose-soft-remove": "^1.0.2",
"nodemailer": "^2.7.0",
"on-finished": "^2.3.0",
"pretty-ms": "^2.1.0",
"request": "^2.74.0",
"sqs": "^2.0.2",
"winston": "^2.2.0",
"winston-child-logger": "0.0.1",
"winston-sentry-transport": "0.0.1"
},
"devDependencies": {
"assert-contains": "0.0.1",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"istanbul": "^0.4.3",
"mocha": "^3.0.2",
"mongodb": "^2.1.7",
"node-inspector": "^0.12.8",
"nodemon": "^1.11.0",
"pre-commit": "^1.1.3",
"sinon": "^1.17.5"
},
"pre-commit": [
"eslint"
],
"engines": {
"node": ">=6"
}
}