package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "filestore-sharelatex",
  3. "version": "0.1.4",
  4. "description": "An API for CRUD operations on binary files stored in S3",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/sharelatex/filestore-sharelatex.git"
  8. },
  9. "scripts": {
  10. "test:acceptance:run": "mocha --recursive --reporter spec --timeout 15000 $@ test/acceptance/js",
  11. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  12. "test:unit:run": "mocha --recursive --reporter spec $@ test/unit/js",
  13. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  14. "start": "node $NODE_APP_OPTIONS app.js",
  15. "nodemon": "nodemon --config nodemon.json",
  16. "lint": "eslint --max-warnings 0 --format unix .",
  17. "format": "prettier --list-different $PWD/'**/*.js'",
  18. "format:fix": "prettier --write $PWD/'**/*.js'",
  19. "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
  20. "test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
  21. "lint:fix": "eslint --fix ."
  22. },
  23. "dependencies": {
  24. "@overleaf/metrics": "^3.5.1",
  25. "@overleaf/o-error": "^3.0.0",
  26. "@overleaf/object-persistor": "^1.0.1",
  27. "@overleaf/settings": "^2.1.1",
  28. "body-parser": "^1.19.0",
  29. "bunyan": "^1.8.15",
  30. "express": "^4.17.1",
  31. "fast-crc32c": "^2.0.0",
  32. "glob": "^7.1.6",
  33. "lodash.once": "^4.1.1",
  34. "logger-sharelatex": "^2.2.0",
  35. "node-uuid": "~1.4.8",
  36. "range-parser": "^1.2.1",
  37. "request": "^2.88.2",
  38. "request-promise-native": "^1.0.8",
  39. "stream-buffers": "~0.2.6",
  40. "tiny-async-pool": "^1.1.0"
  41. },
  42. "devDependencies": {
  43. "@google-cloud/storage": "^5.1.2",
  44. "aws-sdk": "^2.718.0",
  45. "chai": "^4.2.0",
  46. "chai-as-promised": "^7.1.1",
  47. "disrequire": "^1.1.0",
  48. "eslint": "^7.21.0",
  49. "eslint-config-prettier": "^8.1.0",
  50. "eslint-config-standard": "^16.0.2",
  51. "eslint-plugin-chai-expect": "^2.2.0",
  52. "eslint-plugin-chai-friendly": "^0.6.0",
  53. "eslint-plugin-import": "^2.22.1",
  54. "eslint-plugin-mocha": "^8.0.0",
  55. "eslint-plugin-node": "^11.1.0",
  56. "eslint-plugin-prettier": "^3.1.2",
  57. "eslint-plugin-promise": "^4.2.1",
  58. "mocha": "^8.3.2",
  59. "mongodb": "^3.5.9",
  60. "prettier": "^2.2.1",
  61. "prettier-eslint": "^9.0.2",
  62. "sandboxed-module": "2.0.4",
  63. "sinon": "9.0.2",
  64. "sinon-chai": "^3.5.0",
  65. "streamifier": "^0.1.1",
  66. "timekeeper": "^2.2.0"
  67. }
  68. }