Advertisement
raphaelluiz128

Untitled

Oct 9th, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. {
  2. "name": "server",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "nodemon --inspect index.js",
  8. "qmc": "PATH project=qmc-em-acao npm start",
  9. "test": "jest --watch --testLocationInResults --notifyMode=failure --notify=true",
  10. "test-coverage": "jest --watch --coverage --testLocationInResults --notifyMode=failure --notify=true",
  11. "test-emails": "node ./email/sendTestEmails.js",
  12. "precommit": "lint-staged",
  13. "lint": "eslint ./"
  14. },
  15. "author": "",
  16. "license": "ISC",
  17. "dependencies": {
  18. "@shiftcode/backup-mongodb": "^1.0.5",
  19. "aws-sdk": "^2.401.0",
  20. "bcrypt": "^2.0.1",
  21. "body-parser": "^1.18.2",
  22. "boom": "^7.2.0",
  23. "compression": "^1.7.2",
  24. "cors": "^2.8.4",
  25. "cron": "^1.3.0",
  26. "es6-promisify": "^6.0.0",
  27. "express": "^4.16.3",
  28. "express-oauth-server": "^2.0.0",
  29. "faker": "^4.1.0",
  30. "fbgraph": "^1.4.4",
  31. "glob": "^7.1.2",
  32. "google-auth-library": "^1.6.1",
  33. "handlebars": "^4.0.11",
  34. "iplocation": "^5.0.1",
  35. "jsonwebtoken": "^8.2.1",
  36. "kue": "^0.11.6",
  37. "lodash": "^4.17.11",
  38. "md5": "^2.2.1",
  39. "moment": "^2.22.2",
  40. "mongoose": "^5.2.14",
  41. "morgan": "^1.9.1",
  42. "multer": "^1.3.1",
  43. "node-gyp": "^3.6.2",
  44. "nodemailer": "^4.6.4",
  45. "nodemailer-ses-transport": "^1.5.1",
  46. "oauth2-server": "^3.0.1",
  47. "pagarme": "^3.7.3",
  48. "prerender-node": "^3.2.1",
  49. "prettier": "^1.13.7",
  50. "redis": "^2.8.0",
  51. "request": "^2.87.0",
  52. "request-promise-native": "^1.0.5",
  53. "superstruct": "^0.5.4",
  54. "uuid": "^3.3.2",
  55. "validator": "^10.2.0",
  56. "vimeo": "^2.0.2",
  57. "voca": "^1.4.0"
  58. },
  59. "devDependencies": {
  60. "axios": "^0.18.0",
  61. "eslint": "^4.19.1",
  62. "eslint-config-airbnb": "^16.1.0",
  63. "eslint-config-prettier": "^2.9.0",
  64. "eslint-plugin-import": "^2.11.0",
  65. "eslint-plugin-jsx-a11y": "^6.0.3",
  66. "eslint-plugin-prettier": "^2.6.0",
  67. "eslint-plugin-react": "^7.7.0",
  68. "jest": "^22.4.3",
  69. "jest-extended": "^0.7.1",
  70. "lint-staged": "^7.1.0",
  71. "mockdate": "^2.0.2",
  72. "mongodb-memory-server": "^1.7.3",
  73. "nodemon": "^1.17.4",
  74. "supertest": "^3.0.0"
  75. },
  76. "lint-staged": {
  77. "*.js": [
  78. "eslint",
  79. "git add"
  80. ]
  81. }
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement