-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.78 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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": "12.16.2",
"npm": "6.14.4",
"yarn": "1.22.4"
},
"scripts": {
"start": "nodemon app.js",
"heroku-postbuild": "yarn build",
"build": "babel . --ignore node_modules,build --out-dir build",
"start:prod": "node build/app.js",
"clean": "rimraf node_modules build yarn.lock package-lock.json",
"lint": "eslint .",
"test": "jest --watchAll --verbose false --coverage"
},
"dependencies": {
"@sentry/node": "5.10.1",
"apollo-server-express": "^2.2.3",
"babel-cli": "^6.26.0",
"bcrypt": "^3.0.2",
"bluebird": "^3.5.4",
"casual": "^1.5.19",
"cloudinary": "^1.17.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-async-errors": "^3.1.1",
"express-jwt": "^5.3.1",
"express-rate-limit": "^5.0.0",
"express-sslify": "^1.2.0",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"helmet": "^3.15.0",
"joi": "^14.3.0",
"joi-objectid": "^2.0.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"merge-graphql-schemas": "^1.5.8",
"moment": "^2.22.2",
"mongoose": "^5.9.1",
"node-cron": "^2.0.3",
"nodemailer": "^5.0.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"randomatic": "^3.1.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"validator": "^10.9.0",
"web-push": "^3.3.3",
"winston": "^3.1.0",
"winston-mongodb": "^4.0.3"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"nodemon": "^1.18.6"
}
}