package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "docstore-sharelatex",
  3. "version": "0.1.2",
  4. "description": "A CRUD API for handling text documents in projects",
  5. "author": "ShareLaTeX <team@sharelatex>",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/sharelatex/docstore-sharelatex.git"
  9. },
  10. "scripts": {
  11. "start": "node $NODE_APP_OPTIONS app.js",
  12. "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
  13. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  14. "test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
  15. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  16. "nodemon": "nodemon --config nodemon.json",
  17. "lint": "eslint --max-warnings 0 --format unix .",
  18. "format": "prettier --list-different $PWD/'**/*.js'",
  19. "format:fix": "prettier --write $PWD/'**/*.js'",
  20. "lint:fix": "eslint --fix ."
  21. },
  22. "dependencies": {
  23. "@overleaf/metrics": "^3.5.1",
  24. "@overleaf/o-error": "^3.0.0",
  25. "@overleaf/object-persistor": "https://github.com/overleaf/object-persistor/archive/4ca62157a2beb747e9a56da3ce1569124b90378a.tar.gz",
  26. "@overleaf/settings": "^2.1.1",
  27. "async": "^2.6.3",
  28. "body-parser": "^1.19.0",
  29. "bunyan": "^1.8.15",
  30. "celebrate": "^13.0.4",
  31. "express": "^4.17.1",
  32. "logger-sharelatex": "^2.2.0",
  33. "mongodb": "^3.6.0",
  34. "p-map": "^4.0.0",
  35. "request": "^2.88.2",
  36. "streamifier": "^0.1.1",
  37. "underscore": "~1.12.1"
  38. },
  39. "devDependencies": {
  40. "@google-cloud/storage": "^5.1.2",
  41. "chai": "^4.2.0",
  42. "chai-as-promised": "^7.1.1",
  43. "eslint": "^7.21.0",
  44. "eslint-config-prettier": "^8.1.0",
  45. "eslint-config-standard": "^16.0.2",
  46. "eslint-plugin-chai-expect": "^2.2.0",
  47. "eslint-plugin-chai-friendly": "^0.6.0",
  48. "eslint-plugin-import": "^2.22.1",
  49. "eslint-plugin-mocha": "^8.0.0",
  50. "eslint-plugin-node": "^11.1.0",
  51. "eslint-plugin-prettier": "^3.1.2",
  52. "eslint-plugin-promise": "^4.2.1",
  53. "mocha": "^8.3.2",
  54. "prettier": "^2.2.1",
  55. "sandboxed-module": "~2.0.4",
  56. "sinon": "~9.0.2",
  57. "sinon-chai": "^3.5.0"
  58. },
  59. "engines": {
  60. "node": "~6.14.1"
  61. }
  62. }