package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "async": "^2.6.3",
  21. "body-parser": "^1.19.0",
  22. "coffee-script": "^1.12.7",
  23. "errorhandler": "^1.5.1",
  24. "express": "4.17.1",
  25. "logger-sharelatex": "^2.2.0",
  26. "method-override": "^3.0.0",
  27. "metrics-sharelatex": "^2.6.2",
  28. "mongodb": "^3.6.0",
  29. "node-statsd": "0.1.1",
  30. "request": "^2.88.2",
  31. "settings-sharelatex": "^1.1.0",
  32. "underscore": "1.9.2"
  33. },
  34. "devDependencies": {
  35. "babel-eslint": "^10.1.0",
  36. "bunyan": "^1.8.12",
  37. "chai": "^4.2.0",
  38. "eslint": "^6.8.0",
  39. "eslint-config-prettier": "^6.10.0",
  40. "eslint-config-standard": "^14.1.0",
  41. "eslint-config-standard-jsx": "^8.1.0",
  42. "eslint-config-standard-react": "^9.2.0",
  43. "eslint-plugin-chai-expect": "^2.1.0",
  44. "eslint-plugin-chai-friendly": "^0.5.0",
  45. "eslint-plugin-import": "^2.20.1",
  46. "eslint-plugin-jsx-a11y": "^6.2.3",
  47. "eslint-plugin-mocha": "^6.3.0",
  48. "eslint-plugin-node": "^11.0.0",
  49. "eslint-plugin-prettier": "^3.1.2",
  50. "eslint-plugin-promise": "^4.2.1",
  51. "eslint-plugin-react": "^7.19.0",
  52. "eslint-plugin-standard": "^4.0.1",
  53. "mocha": "^7.1.1",
  54. "prettier": "^2.0.0",
  55. "prettier-eslint-cli": "^5.0.0",
  56. "sandboxed-module": "^2.0.3",
  57. "sinon": "^9.0.1"
  58. }
  59. }