package.json 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. {
  2. "name": "parse-server",
  3. "version": "7.3.0",
  4. "description": "An express module providing a Parse-compatible API server",
  5. "main": "lib/index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/parse-community/parse-server"
  9. },
  10. "files": [
  11. "bin/",
  12. "lib/",
  13. "public_html/",
  14. "views/",
  15. "LICENSE",
  16. "NOTICE",
  17. "postinstall.js",
  18. "README.md"
  19. ],
  20. "license": "Apache-2.0",
  21. "dependencies": {
  22. "@apollo/server": "4.10.5",
  23. "@babel/eslint-parser": "7.24.7",
  24. "@graphql-tools/merge": "9.0.4",
  25. "@graphql-tools/schema": "10.0.4",
  26. "@graphql-tools/utils": "8.12.0",
  27. "@parse/fs-files-adapter": "3.0.0",
  28. "@parse/push-adapter": "6.4.1",
  29. "bcryptjs": "2.4.3",
  30. "body-parser": "1.20.3",
  31. "commander": "12.1.0",
  32. "cors": "2.8.5",
  33. "deepcopy": "2.1.0",
  34. "express": "4.21.0",
  35. "express-rate-limit": "7.3.1",
  36. "follow-redirects": "1.15.6",
  37. "graphql": "16.8.1",
  38. "graphql-list-fields": "2.0.4",
  39. "graphql-relay": "0.10.2",
  40. "graphql-tag": "2.12.6",
  41. "graphql-upload": "15.0.2",
  42. "intersect": "1.0.1",
  43. "jsonwebtoken": "9.0.2",
  44. "jwks-rsa": "3.1.0",
  45. "ldapjs": "3.0.7",
  46. "lodash": "4.17.21",
  47. "lru-cache": "10.2.2",
  48. "mime": "3.0.0",
  49. "mongodb": "5.9.0",
  50. "mustache": "4.2.0",
  51. "otpauth": "9.3.1",
  52. "parse": "5.3.0",
  53. "path-to-regexp": "6.3.0",
  54. "pg-monitor": "2.1.0",
  55. "pg-promise": "11.9.1",
  56. "pluralize": "8.0.0",
  57. "punycode": "2.3.1",
  58. "rate-limit-redis": "4.2.0",
  59. "redis": "4.6.13",
  60. "semver": "7.6.3",
  61. "subscriptions-transport-ws": "0.11.0",
  62. "tv4": "1.3.0",
  63. "uuid": "10.0.0",
  64. "winston": "3.13.1",
  65. "winston-daily-rotate-file": "5.0.0",
  66. "ws": "8.18.0"
  67. },
  68. "devDependencies": {
  69. "@actions/core": "1.10.1",
  70. "@apollo/client": "3.11.1",
  71. "@babel/cli": "7.24.8",
  72. "@babel/core": "7.24.7",
  73. "@babel/plugin-proposal-object-rest-spread": "7.20.7",
  74. "@babel/plugin-transform-flow-strip-types": "7.24.7",
  75. "@babel/preset-env": "7.24.8",
  76. "@saithodev/semantic-release-backmerge": "4.0.1",
  77. "@semantic-release/changelog": "6.0.3",
  78. "@semantic-release/commit-analyzer": "13.0.0",
  79. "@semantic-release/git": "10.0.1",
  80. "@semantic-release/github": "10.1.0",
  81. "@semantic-release/npm": "12.0.1",
  82. "@semantic-release/release-notes-generator": "14.0.1",
  83. "all-node-versions": "12.1.0",
  84. "apollo-upload-client": "17.0.0",
  85. "clean-jsdoc-theme": "4.3.0",
  86. "cross-env": "7.0.2",
  87. "deep-diff": "1.0.2",
  88. "eslint": "8.57.0",
  89. "eslint-plugin-flowtype": "8.0.3",
  90. "flow-bin": "0.119.1",
  91. "form-data": "4.0.0",
  92. "graphql-tag": "2.12.6",
  93. "husky": "9.0.11",
  94. "jasmine": "3.5.0",
  95. "jasmine-spec-reporter": "7.0.0",
  96. "jsdoc": "4.0.3",
  97. "jsdoc-babel": "0.5.0",
  98. "lint-staged": "10.2.3",
  99. "m": "1.9.0",
  100. "madge": "7.0.0",
  101. "mock-files-adapter": "file:spec/dependencies/mock-files-adapter",
  102. "mock-mail-adapter": "file:spec/dependencies/mock-mail-adapter",
  103. "mongodb-runner": "5.6.4",
  104. "node-abort-controller": "3.1.1",
  105. "node-fetch": "3.2.10",
  106. "nyc": "15.1.0",
  107. "prettier": "2.0.5",
  108. "semantic-release": "24.0.0",
  109. "yaml": "2.5.0"
  110. },
  111. "scripts": {
  112. "ci:check": "node ./ci/ciCheck.js",
  113. "ci:checkNodeEngine": "node ./ci/nodeEngineCheck.js",
  114. "ci:definitionsCheck": "node ./ci/definitionsCheck.js",
  115. "definitions": "node ./resources/buildConfigDefinitions.js && prettier --write 'src/Options/*.js'",
  116. "docs": "jsdoc -c ./jsdoc-conf.json",
  117. "lint": "flow && eslint --cache ./",
  118. "lint-fix": "eslint --fix --cache ./",
  119. "build": "babel src/ -d lib/ --copy-files",
  120. "watch": "babel --watch src/ -d lib/ --copy-files",
  121. "test:mongodb:runnerstart": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner start -t ${MONGODB_TOPOLOGY} --version ${MONGODB_VERSION} -- --port 27017",
  122. "test:mongodb:testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=$npm_config_dbversion} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 jasmine",
  123. "test:mongodb": "npm run test:mongodb:runnerstart --dbversion=$npm_config_dbversion && npm run test:mongodb:testonly --dbversion=$npm_config_dbversion",
  124. "test:mongodb:4.2.19": "npm run test:mongodb --dbversion=4.2.19",
  125. "test:mongodb:4.4.13": "npm run test:mongodb --dbversion=4.4.13",
  126. "test:mongodb:5.3.2": "npm run test:mongodb --dbversion=5.3.2",
  127. "test:mongodb:6.0.2": "npm run test:mongodb --dbversion=6.0.2",
  128. "test:mongodb:7.0.1": "npm run test:mongodb --dbversion=7.0.1",
  129. "test:postgres:testonly": "cross-env PARSE_SERVER_TEST_DB=postgres PARSE_SERVER_TEST_DATABASE_URI=postgres://postgres:password@localhost:5432/parse_server_postgres_adapter_test_database npm run testonly",
  130. "pretest": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} mongodb-runner start -t ${MONGODB_TOPOLOGY} --version ${MONGODB_VERSION} -- --port 27017",
  131. "testonly": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 jasmine",
  132. "test": "npm run testonly",
  133. "posttest": "cross-env mongodb-runner stop --all",
  134. "coverage": "cross-env MONGODB_VERSION=${MONGODB_VERSION:=5.3.2} MONGODB_TOPOLOGY=${MONGODB_TOPOLOGY:=standalone} TESTING=1 nyc jasmine",
  135. "start": "node ./bin/parse-server",
  136. "prettier": "prettier --write {src,spec}/{**/*,*}.js",
  137. "prepare": "npm run build",
  138. "postinstall": "node -p 'require(\"./postinstall.js\")()'",
  139. "madge:circular": "node_modules/.bin/madge ./src --circular"
  140. },
  141. "engines": {
  142. "node": ">=18.0.0 <19.0.0 || >=19.0.0 <20.0.0 || >=20.0.0 <21.0.0 || >=22.0.0 <23.0.0"
  143. },
  144. "bin": {
  145. "parse-server": "bin/parse-server"
  146. },
  147. "optionalDependencies": {
  148. "@node-rs/bcrypt": "1.10.4"
  149. },
  150. "collective": {
  151. "type": "opencollective",
  152. "url": "https://opencollective.com/parse-server",
  153. "logo": "https://opencollective.com/parse-server/logo.txt?reverse=true&variant=binary"
  154. },
  155. "funding": {
  156. "type": "opencollective",
  157. "url": "https://opencollective.com/parse-server"
  158. },
  159. "husky": {
  160. "hooks": {
  161. "pre-commit": "lint-staged"
  162. }
  163. },
  164. "lint-staged": {
  165. "{src,spec}/{**/*,*}.js": [
  166. "prettier --write",
  167. "eslint --fix --cache",
  168. "git add"
  169. ]
  170. }
  171. }