-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.8 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": "report-missing-people",
"version": "1.0.0",
"engines": {
"node": "10.16.3"
},
"description": "Report cases of missing people",
"main": "server.js",
"scripts": {
"start": "pm2-runtime start ecosystem.config.js --env production",
"start:dev": "pm2-runtime start ecosystem.config.js --env development",
"test": "mocha \"./test/**/*.spec.js\" --timeout=20000 --require test/prepare --exit",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"author": "George Benjamin",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^16.1.8",
"@sendgrid/mail": "^6.4.0",
"@sentry/node": "^5.10.2",
"algoliasearch": "^3.35.1",
"axios": "^0.19.0",
"bcrypt": "^3.0.7",
"bluebird": "^3.7.1",
"body-parser": "^1.19.0",
"bull": "^3.12.1",
"cloudinary": "^1.17.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-ip": "^1.0.3",
"geolib": "^3.2.0",
"google-auth-library": "^5.5.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"mongoose": "^5.7.11",
"mongoose-slug-generator": "^1.0.4",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"newrelic": "^6.2.0",
"node-cron": "^2.0.3",
"passport": "^0.4.0",
"passport-facebook-token": "^3.3.0",
"pm2": "^4.2.1",
"redis": "^2.8.0",
"twit": "^2.2.11",
"twittersignin": "^1.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.9",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^7.0.0",
"mocha-prepare": "^0.1.0",
"mongo-unit": "^1.5.1",
"nyc": "^15.0.0"
}
}