-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.89 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "fuutr-server",
"version": "1.0.0",
"description": "FUUTR API server",
"author": "Chris Chen <[email protected]>",
"main": "src/index.js",
"private": true,
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "node src/index.js",
"start:debug": "DEBUG=FUUTR:* nodemon src/index.js",
"docker:build": "docker build --rm -t fuutr-server:latest .",
"deploy:staging": "npm run docker:build && eb deploy otg-server-staging"
},
"repository": {
"type": "git",
"url": "https://bitbucket.org/fuutr/server"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose",
"es6",
"REST",
"API"
],
"dependencies": {
"@mapbox/polyline": "^1.0.0",
"@sendgrid/mail": "^6.3.1",
"aws-sdk": "^2.400.0",
"axios": "^0.18.0",
"bcrypt": "^3.0.4",
"bluebird": "^3.5.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-validation": "^1.0.2",
"express-winston": "^3.1.0",
"handlebars": "^4.1.0",
"helmet": "^3.15.0",
"html-to-text": "^4.0.0",
"http-status": "^1.3.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"juice": "^5.1.0",
"lodash": "^4.17.11",
"md5": "^2.2.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.23",
"mongoose": "^5.4.11",
"mongoose-geojson-schema": "^2.1.3",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"passport": "^0.4.0",
"passport-facebook-token": "^3.3.0",
"qrcode": "^1.3.3",
"querystring": "^0.2.0",
"stripe": "^6.23.1",
"suncalc": "^1.8.0",
"uuid": "^3.3.2",
"winston": "^3.2.1",
"winston-aws-cloudwatch": "^3.0.0"
},
"license": "UNLICENSED",
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0"
}
}