package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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": "node_modules/.bin/eslint --max-warnings 0 .",
  18. "format": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --list-different",
  19. "format:fix": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --write"
  20. },
  21. "dependencies": {
  22. "@overleaf/metrics": "^3.5.1",
  23. "@overleaf/object-persistor": "https://github.com/overleaf/object-persistor/archive/4ca62157a2beb747e9a56da3ce1569124b90378a.tar.gz",
  24. "async": "^2.6.3",
  25. "body-parser": "^1.19.0",
  26. "celebrate": "^13.0.4",
  27. "express": "^4.17.1",
  28. "logger-sharelatex": "^2.2.0",
  29. "mongodb": "^3.6.0",
  30. "p-map": "^4.0.0",
  31. "settings-sharelatex": "^1.1.0",
  32. "streamifier": "^0.1.1",
  33. "underscore": "~1.10.2"
  34. },
  35. "devDependencies": {
  36. "@google-cloud/storage": "^5.1.2",
  37. "babel-eslint": "^10.1.0",
  38. "bunyan": "~1.8.14",
  39. "chai": "~4.2.0",
  40. "chai-as-promised": "^7.1.1",
  41. "eslint": "^6.8.0",
  42. "eslint-config-prettier": "^6.10.0",
  43. "eslint-config-standard": "^14.1.0",
  44. "eslint-config-standard-jsx": "^8.1.0",
  45. "eslint-config-standard-react": "^9.2.0",
  46. "eslint-plugin-chai-expect": "^2.1.0",
  47. "eslint-plugin-chai-friendly": "^0.5.0",
  48. "eslint-plugin-import": "^2.20.1",
  49. "eslint-plugin-jsx-a11y": "^6.3.1",
  50. "eslint-plugin-mocha": "^6.3.0",
  51. "eslint-plugin-node": "^11.0.0",
  52. "eslint-plugin-prettier": "^3.1.2",
  53. "eslint-plugin-promise": "^4.2.1",
  54. "eslint-plugin-react": "^7.20.3",
  55. "eslint-plugin-standard": "^4.0.1",
  56. "mocha": "^7.2.0",
  57. "prettier": "^2.0.0",
  58. "prettier-eslint-cli": "^5.0.0",
  59. "request": "~2.88.2",
  60. "sandboxed-module": "~2.0.4",
  61. "sinon": "~9.0.2",
  62. "sinon-chai": "^3.5.0"
  63. },
  64. "engines": {
  65. "node": "~6.14.1"
  66. }
  67. }