package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "notifications-sharelatex",
  3. "version": "0.0.1",
  4. "description": "An API to handle user notifications",
  5. "main": "app.js",
  6. "scripts": {
  7. "start": "node $NODE_APP_OPTIONS app.js",
  8. "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
  9. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  10. "test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
  11. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  12. "nodemon": "nodemon --config nodemon.json",
  13. "lint": "node_modules/.bin/eslint --max-warnings 0 .",
  14. "format": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --list-different",
  15. "format:fix": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --write"
  16. },
  17. "author": "",
  18. "license": "ISC",
  19. "dependencies": {
  20. "@overleaf/metrics": "^3.5.1",
  21. "async": "^2.6.3",
  22. "body-parser": "^1.19.0",
  23. "coffee-script": "^1.12.7",
  24. "errorhandler": "^1.5.1",
  25. "express": "4.17.1",
  26. "logger-sharelatex": "^2.2.0",
  27. "method-override": "^3.0.0",
  28. "mongodb": "^3.6.0",
  29. "request": "^2.88.2",
  30. "settings-sharelatex": "^1.1.0",
  31. "underscore": "1.9.2"
  32. },
  33. "devDependencies": {
  34. "babel-eslint": "^10.1.0",
  35. "bunyan": "^1.8.12",
  36. "chai": "^4.2.0",
  37. "eslint": "^6.8.0",
  38. "eslint-config-prettier": "^6.10.0",
  39. "eslint-config-standard": "^14.1.0",
  40. "eslint-config-standard-jsx": "^8.1.0",
  41. "eslint-config-standard-react": "^9.2.0",
  42. "eslint-plugin-chai-expect": "^2.1.0",
  43. "eslint-plugin-chai-friendly": "^0.5.0",
  44. "eslint-plugin-import": "^2.20.1",
  45. "eslint-plugin-jsx-a11y": "^6.2.3",
  46. "eslint-plugin-mocha": "^6.3.0",
  47. "eslint-plugin-node": "^11.0.0",
  48. "eslint-plugin-prettier": "^3.1.2",
  49. "eslint-plugin-promise": "^4.2.1",
  50. "eslint-plugin-react": "^7.19.0",
  51. "eslint-plugin-standard": "^4.0.1",
  52. "mocha": "^7.1.1",
  53. "prettier": "^2.0.0",
  54. "prettier-eslint-cli": "^5.0.0",
  55. "sandboxed-module": "^2.0.3",
  56. "sinon": "^9.0.1"
  57. }
  58. }