package.json 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. {
  2. "name": "@overleaf/web",
  3. "description": "The HTTP front end for Overleaf",
  4. "private": true,
  5. "main": "app.mjs",
  6. "directories": {
  7. "public": "./public"
  8. },
  9. "scripts": {
  10. "test:acceptance:run_dir": "mocha --recursive --timeout 25000 --grep=$MOCHA_GREP --require test/acceptance/bootstrap.js",
  11. "test:acceptance:app": "npm run test:acceptance:run_dir -- test/acceptance/src",
  12. "test:unit:run_dir": "bin/test_unit_run_dir",
  13. "test:unit:all": "npm run test:unit:run_dir -- test/unit/src modules/*/test/unit/src",
  14. "test:unit:all:silent": "npm run test:unit:all -- --reporter dot",
  15. "test:unit:app": "npm run test:unit:run_dir -- test/unit/src",
  16. "test:unit:mocha": "npm run test:unit:mocha:run_dir -- test/unit/src modules/*/test/unit/src",
  17. "test:unit:mocha:run_dir": "mocha --recursive --timeout 25000 --exit --grep=$MOCHA_GREP --require test/unit/bootstrap.js --extension=js",
  18. "test:unit:esm": "npm run test:unit:esm:parallel && npm run test:unit:esm:sequential",
  19. "test:unit:esm:parallel": "vitest run --project=Parallel",
  20. "test:unit:esm:sequential": "vitest run --project=Sequential --no-file-parallelism",
  21. "test:unit:esm:watch": "vitest",
  22. "test:frontend": "NODE_ENV=test TZ=GMT mocha --recursive --timeout 5000 --exit --extension js,jsx,mjs,ts,tsx --grep=$MOCHA_GREP --require test/frontend/bootstrap.js --ignore '**/*.spec.{js,jsx,ts,tsx}' --ignore '**/helpers/**/*.{js,jsx,ts,tsx}' test/frontend modules/*/test/frontend",
  23. "test:frontend:coverage": "c8 --all --include 'frontend/js' --include 'modules/*/frontend/js' --exclude 'frontend/js/vendor' --reporter=lcov --reporter=text-summary npm run test:frontend",
  24. "test:writefull": "vitest --run --config modules/writefull/frontend/js/integration/vitest.config.ts",
  25. "start": "node app.mjs",
  26. "nodemon": "node --watch app.mjs --watch-locales",
  27. "webpack": "webpack serve --config webpack.config.dev.js",
  28. "webpack:production": "webpack --config webpack.config.prod.js",
  29. "webpack:profile": "webpack --config webpack.config.prod.js --profile --json > stats.json",
  30. "format": "prettier --list-different $PWD/'**/*.{js,jsx,mjs,ts,tsx,json}'",
  31. "format:fix": "prettier --write $PWD/'**/*.{js,jsx,mjs,ts,tsx,json}'",
  32. "format:styles": "prettier --list-different $PWD/'**/*.{css,scss}'",
  33. "format:styles:fix": "prettier --write $PWD/'**/*.{css,scss}'",
  34. "format:pug": "prettier --list-different $PWD/'**/*.pug'",
  35. "format:pug:fix": "prettier --write $PWD/'**/*.pug'",
  36. "format:jenkins": "prettier --list-different $PWD/'**/Jenkinsfile'",
  37. "format:jenkins:fix": "prettier --write $PWD/'**/Jenkinsfile'",
  38. "lint": "eslint --max-warnings 0 --format unix --ext .js,.jsx,.mjs,.ts,.tsx .",
  39. "lint:fix": "eslint --fix --ext .js,.jsx,.mjs,.ts,.tsx .",
  40. "lint:styles": "stylelint '**/*.scss'",
  41. "lint:styles:fix": "stylelint '**/*.scss' --fix",
  42. "type-check": "tsc --noEmit",
  43. "type-check:backend": "tsc -p tsconfig.backend.json --noEmit",
  44. "extract-translations": "i18next-scanner",
  45. "convert-themes": "node frontend/js/features/source-editor/themes/scripts/convert.js",
  46. "cypress:open-ct": "OVERLEAF_CONFIG=$PWD/config/settings.webpack.js cypress open --component",
  47. "cypress:run-ct": "OVERLEAF_CONFIG=$PWD/config/settings.webpack.js cypress run --component --browser chrome",
  48. "cypress:docker:open-ct": "DOCKER_USER=\"$(id -u):$(id -g)\" docker compose -f docker-compose.cypress.yml run --rm cypress run cypress:open-ct",
  49. "cypress:docker:run-ct": "DOCKER_USER=\"$(id -u):$(id -g)\" docker compose -f docker-compose.cypress.yml run --rm cypress run cypress:run-ct --browser chrome",
  50. "lezer-latex:generate": "node scripts/lezer-latex/generate.mjs",
  51. "lezer-latex:run": "node scripts/lezer-latex/run.mjs",
  52. "lezer-latex:benchmark": "node scripts/lezer-latex/benchmark.mjs",
  53. "lezer-latex:benchmark-incremental": "node scripts/lezer-latex/test-incremental-parser.mjs",
  54. "routes": "bin/routes",
  55. "storybook": "storybook dev -p 6006 --no-open",
  56. "build-storybook": "storybook build",
  57. "precompile-pug": "node app/src/infrastructure/Views",
  58. "local:nodemon": "set -a;. ../../config/dev-environment.env;. ./docker-compose.common.env;. ../../config/local-dev.env;. ./local-dev.env;. ../../config/local.env; set +a; echo $OVERLEAF_CONFIG; WEB_PORT=13000 LISTEN_ADDRESS=0.0.0.0 npm run nodemon",
  59. "local:webpack": "set -a;. ../../config/dev-environment.env;. ./docker-compose.common.env;. ../../config/local-dev.env;. ./local-dev.env;. ../../config/local.env; set +a; PORT=13808 OVERLEAF_CONFIG=$(pwd)/config/settings.webpack.js npm run webpack",
  60. "local:test:acceptance:run_dir": "set -a;. $(pwd)/docker-compose.common.env;. $(pwd)/local-test.env; set +a; npm run test:acceptance:run_dir",
  61. "local:test:acceptance:run_app": "OVERLEAF_CONFIG=$(pwd)/test/acceptance/config/settings.test.${OVERLEAF_APP}.js npm run local:test:acceptance:run_dir -- $(pwd)/test/acceptance/src",
  62. "local:test:acceptance:run_module": "if [ ! -d $(pwd)/modules/${MODULE}/test/acceptance ]; then echo \"Module '${MODULE}' does not have acceptance tests\"; exit 0; fi; OVERLEAF_CONFIG=$(pwd)/modules/${MODULE}/test/acceptance/config/settings.test.js BASE_CONFIG=$(pwd)/test/acceptance/config/settings.test.${OVERLEAF_APP}.js npm run local:test:acceptance:run_dir -- $(pwd)/modules/${MODULE}/test/acceptance",
  63. "local:test:acceptance:run_modules": "OVERLEAF_CONFIG=$(pwd)/test/acceptance/config/settings.test.${OVERLEAF_APP}.js node $(pwd)/test/acceptance/getModuleTargets --name-only | xargs -n1 sh -c 'MODULE=$0 npm run local:test:acceptance:run_module || exit 255' $1",
  64. "local:test:acceptance:app:saas": "OVERLEAF_APP=saas npm run local:test:acceptance:run_app",
  65. "local:test:acceptance:app:server-pro": "OVERLEAF_APP=server-pro npm run local:test:acceptance:run_app",
  66. "local:test:acceptance:app:server-ce": "OVERLEAF_APP=server-ce npm run local:test:acceptance:run_app",
  67. "local:test:acceptance:app": "echo saas server-pro server-ce | xargs -n1 sh -c 'npm run local:test:acceptance:app:${0} || exit 255'",
  68. "local:test:acceptance:modules:saas": "OVERLEAF_APP=saas npm run local:test:acceptance:run_modules",
  69. "local:test:acceptance:modules:server-pro": "OVERLEAF_APP=server-pro npm run local:test:acceptance:run_modules",
  70. "local:test:acceptance:modules:server-ce": "OVERLEAF_APP=server-ce npm run local:test:acceptance:run_modules",
  71. "local:test:acceptance:modules": "echo saas server-ce server-pro | xargs -n1 sh -c 'npm run local:test:acceptance:modules:${0} || exit 255'",
  72. "local:test:acceptance": "npm run local:test:acceptance:app && npm run local:test:acceptance:modules",
  73. "local:test:unit": "npm run test:unit:all",
  74. "local:test:frontend": "npm run test:frontend",
  75. "local:test": "npm run local:test:unit && npm run local:test:frontend && npm run local:test:acceptance",
  76. "knip": "knip --config knip.ts"
  77. },
  78. "browserslist": [
  79. "defaults and supports woff2",
  80. "last 1 year",
  81. "safari > 14"
  82. ],
  83. "dependencies": {
  84. "@ai-sdk/mcp": "^1.0.0-beta.15",
  85. "@ai-sdk/openai": "^3.0.0-beta.59",
  86. "@aws-sdk/client-ses": "^3.864.0",
  87. "@contentful/rich-text-html-renderer": "^16.0.2",
  88. "@contentful/rich-text-types": "^16.0.2",
  89. "@google-cloud/bigquery": "^6.0.1",
  90. "@google-cloud/storage": "^6.10.1",
  91. "@node-oauth/oauth2-server": "^5.1.0",
  92. "@node-saml/passport-saml": "^5.1.0",
  93. "@overleaf/access-token-encryptor": "*",
  94. "@overleaf/fetch-utils": "*",
  95. "@overleaf/logger": "*",
  96. "@overleaf/metrics": "*",
  97. "@overleaf/migrations": "*",
  98. "@overleaf/mongo-utils": "*",
  99. "@overleaf/o-error": "*",
  100. "@overleaf/object-persistor": "*",
  101. "@overleaf/promise-utils": "*",
  102. "@overleaf/redis-wrapper": "*",
  103. "@overleaf/settings": "*",
  104. "@overleaf/stream-utils": "*",
  105. "@overleaf/validation-tools": "*",
  106. "@phosphor-icons/react": "^2.1.7",
  107. "@phosphor-icons/webcomponents": "^2.1.5",
  108. "@slack/webhook": "^7.0.2",
  109. "@stripe/react-stripe-js": "^3.9.0",
  110. "@stripe/stripe-js": "^7.7.0",
  111. "@xmldom/xmldom": "^0.7.13",
  112. "accepts": "^1.3.7",
  113. "ai": "^6.0.0-beta.99",
  114. "ajv": "^8.12.0",
  115. "archiver": "^5.3.0",
  116. "async": "^3.2.5",
  117. "base-x": "^4.0.1",
  118. "basic-auth": "^2.0.1",
  119. "bcrypt": "^5.0.0",
  120. "body-parser": "^1.20.3",
  121. "bowser": "^2.11.0",
  122. "bull": "^3.18.0",
  123. "bunyan": "^1.8.15",
  124. "cache-flow": "^1.9.0",
  125. "connect-redis": "^6.1.3",
  126. "content-disposition": "^0.5.0",
  127. "contentful": "^10.8.5",
  128. "cookie": "^0.2.3",
  129. "cookie-parser": "1.4.6",
  130. "crc-32": "^1.2.2",
  131. "csurf": "^1.11.0",
  132. "csv": "^6.2.5",
  133. "dateformat": "1.0.4-1.2.3",
  134. "ejs": "^3.1.10",
  135. "email-addresses": "^5.0.0",
  136. "eventsource-parser": "^1.1.2",
  137. "express": "^4.21.2",
  138. "express-bearer-token": "^2.4.0",
  139. "express-http-proxy": "^1.6.0",
  140. "express-session": "^1.17.1",
  141. "file-type": "^21.0.0",
  142. "focus-trap-react": "^11.0.4",
  143. "globby": "^5.0.0",
  144. "helmet": "^6.0.1",
  145. "https-proxy-agent": "^7.0.6",
  146. "i18next": "^23.10.0",
  147. "i18next-fs-backend": "^2.3.1",
  148. "i18next-http-middleware": "^3.5.0",
  149. "jose": "^4.3.8",
  150. "json2csv": "^4.3.3",
  151. "jsonwebtoken": "^9.0.0",
  152. "lodash": "^4.17.19",
  153. "lru-cache": "^7.10.1",
  154. "marked": "^4.1.0",
  155. "method-override": "^2.3.3",
  156. "minimatch": "^7.4.2",
  157. "minimist": "^1.2.7",
  158. "mmmagic": "^0.5.3",
  159. "moment": "^2.29.4",
  160. "mongodb-legacy": "6.1.3",
  161. "mongoose": "8.9.5",
  162. "multer": "2.0.2",
  163. "nocache": "^2.1.0",
  164. "node-fetch": "^2.7.0",
  165. "nodemailer": "^7.0.0",
  166. "on-headers": "^1.0.2",
  167. "otplib": "^12.0.1",
  168. "overleaf-editor-core": "*",
  169. "p-limit": "^2.3.0",
  170. "p-props": "4.0.0",
  171. "p-queue": "^8.1.0",
  172. "parse-data-url": "^2.0.0",
  173. "passport": "^0.6.0",
  174. "passport-google-oauth20": "^2.0.0",
  175. "passport-ldapauth": "^2.1.4",
  176. "passport-local": "^1.0.0",
  177. "passport-oauth2": "^1.5.0",
  178. "passport-orcid": "0.0.4",
  179. "pug": "^3.0.3",
  180. "pug-runtime": "^3.0.1",
  181. "rate-limiter-flexible": "^2.4.1",
  182. "recurly": "^4.0.0",
  183. "referer-parser": "github:overleaf/nodejs-referer-parser#8b8b103762d05b7be4cfa2f810e1d408be67d7bb",
  184. "request": "^2.88.2",
  185. "requestretry": "^7.1.0",
  186. "sanitize-html": "^2.8.1",
  187. "stripe": "^18.4.0",
  188. "tough-cookie": "^4.0.0",
  189. "tsscmp": "^1.0.6",
  190. "uid-safe": "^2.1.5",
  191. "utf-8-validate": "^5.0.2",
  192. "valid-data-url": "^2.0.0",
  193. "valid-url": "^1.0.9",
  194. "xml-crypto": "^2.1.6",
  195. "xml2js": "^0.6.2",
  196. "xregexp": "^4.3.0",
  197. "yauzl": "^2.10.0",
  198. "zod": "^4.0.17",
  199. "zod-validation-error": "^4.0.1"
  200. },
  201. "devDependencies": {
  202. "5to6-codemod": "^1.8.0",
  203. "@ai-sdk/react": "^3.0.0-beta.99",
  204. "@babel/cli": "^7.27.0",
  205. "@babel/core": "^7.26.10",
  206. "@babel/plugin-proposal-decorators": "^7.27.0",
  207. "@babel/preset-env": "^7.26.9",
  208. "@babel/preset-react": "^7.26.3",
  209. "@babel/preset-typescript": "^7.27.0",
  210. "@babel/register": "^7.25.9",
  211. "@codemirror/autocomplete": "github:overleaf/codemirror-autocomplete#6445cd056671c98d12d1c597ba705e11327ec4c5",
  212. "@codemirror/commands": "^6.9.0",
  213. "@codemirror/lang-markdown": "^6.4.0",
  214. "@codemirror/language": "^6.11.3",
  215. "@codemirror/lint": "^6.9.0",
  216. "@codemirror/search": "github:overleaf/codemirror-search#04380a528c339cd4b78fb10b3ef017f657ec17bd",
  217. "@codemirror/state": "^6.5.2",
  218. "@codemirror/view": "^6.38.6",
  219. "@floating-ui/react": "^0.27.5",
  220. "@juggle/resize-observer": "^3.3.1",
  221. "@lezer/common": "^1.2.3",
  222. "@lezer/generator": "^1.7.3",
  223. "@lezer/highlight": "^1.2.1",
  224. "@lezer/lr": "^1.4.2",
  225. "@lezer/markdown": "^1.4.3",
  226. "@overleaf/codemirror-tree-view": "^0.1.3",
  227. "@overleaf/dictionaries": "https://github.com/overleaf/dictionaries/archive/refs/tags/v0.0.3.tar.gz",
  228. "@overleaf/eslint-plugin": "*",
  229. "@overleaf/ranges-tracker": "*",
  230. "@overleaf/stream-utils": "*",
  231. "@pmmmwh/react-refresh-webpack-plugin": "^0.5.16",
  232. "@pollyjs/adapter-node-http": "^6.0.6",
  233. "@pollyjs/core": "^6.0.6",
  234. "@pollyjs/persister-fs": "^6.0.6",
  235. "@prettier/plugin-pug": "^3.4.0",
  236. "@replit/codemirror-emacs": "overleaf/codemirror-emacs#4394c03858f27053f8768258e9493866e06e938e",
  237. "@replit/codemirror-indentation-markers": "overleaf/codemirror-indentation-markers#371ce3b56f453a392eb0d3b85ab019c185c68e1f",
  238. "@replit/codemirror-vim": "overleaf/codemirror-vim#1bef138382d948018f3f9b8a4d7a70ab61774e4b",
  239. "@sentry/browser": "7.46.0",
  240. "@storybook/addon-a11y": "^8.6.12",
  241. "@storybook/addon-designs": "^8.2.1",
  242. "@storybook/addon-essentials": "^8.6.12",
  243. "@storybook/addon-interactions": "^8.6.12",
  244. "@storybook/addon-links": "^8.6.12",
  245. "@storybook/addon-styling-webpack": "^1.0.1",
  246. "@storybook/addon-webpack5-compiler-babel": "^3.0.6",
  247. "@storybook/cli": "^8.6.12",
  248. "@storybook/react": "^8.6.12",
  249. "@storybook/react-webpack5": "^8.6.12",
  250. "@storybook/theming": "^8.6.12",
  251. "@tailwindcss/container-queries": "^0.1.1",
  252. "@testing-library/cypress": "^10.0.3",
  253. "@testing-library/dom": "^10.4.0",
  254. "@testing-library/jest-dom": "^6.6.3",
  255. "@testing-library/react": "^16.3.0",
  256. "@testing-library/user-event": "^14.4.3",
  257. "@types/algoliasearch": "^3.34.11",
  258. "@types/bootstrap": "^5.2.10",
  259. "@types/chai": "^4.3.0",
  260. "@types/dateformat": "^5.0.3",
  261. "@types/diff": "^5.2.3",
  262. "@types/dom-speech-recognition": "^0.0.7",
  263. "@types/events": "^3.0.3",
  264. "@types/express": "^4.17.23",
  265. "@types/mocha": "^9.1.0",
  266. "@types/mocha-each": "^2.0.4",
  267. "@types/node": "^24.5.2",
  268. "@types/react": "^18.3.20",
  269. "@types/react-color": "^3.0.13",
  270. "@types/react-dom": "^18.3.6",
  271. "@types/react-google-recaptcha": "^2.1.9",
  272. "@types/react-linkify": "^1.0.4",
  273. "@types/react-syntax-highlighter": "^15.5.11",
  274. "@types/recurly__recurly-js": "^4.38.0",
  275. "@types/sinon-chai": "^3.2.12",
  276. "@types/uuid": "^9.0.8",
  277. "@uppy/core": "^3.8.0",
  278. "@uppy/dashboard": "^3.7.1",
  279. "@uppy/drag-drop": "^3.0.3",
  280. "@uppy/file-input": "^3.0.4",
  281. "@uppy/progress-bar": "^3.0.4",
  282. "@uppy/react": "^3.2.1",
  283. "@uppy/utils": "^5.7.0",
  284. "@uppy/xhr-upload": "^3.6.0",
  285. "@vitest/eslint-plugin": "1.1.44",
  286. "@writefull/core": "^1.27.27",
  287. "@writefull/ui": "^1.27.27",
  288. "@writefull/utils": "^1.27.27",
  289. "abort-controller": "^3.0.0",
  290. "acorn": "^7.1.1",
  291. "acorn-walk": "^7.1.1",
  292. "algoliasearch": "^3.35.1",
  293. "autoprefixer": "^10.4.16",
  294. "axios": "^1.8.3",
  295. "babel-loader": "^9.1.3",
  296. "babel-plugin-macros": "^3.1.0",
  297. "babel-plugin-module-resolver": "^5.0.2",
  298. "backbone": "^1.6.0",
  299. "bootstrap": "^5.3.7",
  300. "c8": "^7.2.0",
  301. "chai": "^4.3.6",
  302. "chai-as-promised": "^7.1.1",
  303. "chai-exclude": "^2.0.3",
  304. "chart.js": "^4.0.1",
  305. "chartjs-adapter-moment": "^1.0.1",
  306. "chartjs-plugin-datalabels": "^2.2.0",
  307. "cheerio": "^1.0.0-rc.3",
  308. "classnames": "^2.2.6",
  309. "confusing-browser-globals": "^1.0.11",
  310. "cookie-signature": "^1.2.1",
  311. "copy-webpack-plugin": "^11.0.0",
  312. "core-js": "^3.41.0",
  313. "css-loader": "^6.8.1",
  314. "css-minimizer-webpack-plugin": "^5.0.1",
  315. "cypress": "13.13.2",
  316. "cypress-multi-reporters": "^2.0.5",
  317. "cypress-plugin-tab": "^1.0.5",
  318. "d3": "^3.5.16",
  319. "daterangepicker": "2.1.27",
  320. "diff": "^5.1.0",
  321. "dompurify": "^3.2.4",
  322. "downshift": "^9.0.9",
  323. "es6-promise": "^4.2.8",
  324. "escodegen": "^2.0.0",
  325. "eslint-config-standard-jsx": "^11.0.0",
  326. "eslint-plugin-jsx-a11y": "^6.7.1",
  327. "eslint-plugin-react": "^7.32.2",
  328. "eslint-plugin-react-hooks": "^4.6.0",
  329. "eslint-plugin-testing-library": "^7.1.1",
  330. "eslint-plugin-unicorn": "^56.0.0",
  331. "events": "^3.3.0",
  332. "eventsource-client": "^1.1.4",
  333. "fake-indexeddb": "^6.0.0",
  334. "fast-fuzzy": "^1.12.0",
  335. "fetch-mock": "^12.5.2",
  336. "formik": "^2.2.9",
  337. "fuse.js": "^7.0.0",
  338. "glob": "^12.0.0",
  339. "globals": "^16.2.0",
  340. "handlebars": "^4.7.8",
  341. "handlebars-loader": "^1.7.3",
  342. "html-webpack-plugin": "^5.5.3",
  343. "i18next-scanner": "^4.4.0",
  344. "idb": "^8.0.0",
  345. "inversify": "^6.2.2",
  346. "jquery": "^3.7.1",
  347. "jscodeshift": "^17.0.0",
  348. "jsdom": "^19.0.0",
  349. "jsdom-global": "^3.0.2",
  350. "katex": "^0.16.25",
  351. "knip": "^5.64.1",
  352. "match-sorter": "^6.2.0",
  353. "mathjax": "^3.2.2",
  354. "mediatr-ts": "^2.0.1",
  355. "mensch": "^0.3.4",
  356. "micromark": "^4.0.0",
  357. "mini-css-extract-plugin": "^2.7.6",
  358. "mocha": "^11.1.0",
  359. "mocha-each": "^2.0.1",
  360. "mocha-junit-reporter": "^2.2.1",
  361. "mocha-multi-reporters": "^1.5.1",
  362. "mock-fs": "^5.1.2",
  363. "nock": "^13.5.6",
  364. "nvd3": "^1.8.6",
  365. "p-reflect": "^3.1.0",
  366. "path-browserify": "^1.0.1",
  367. "pdfjs-dist": "5.1.91",
  368. "pirates": "^4.0.1",
  369. "postcss": "^8.4.31",
  370. "postcss-loader": "^7.3.3",
  371. "prop-types": "^15.7.2",
  372. "qrcode": "^1.4.4",
  373. "react": "^18.3.1",
  374. "react-bootstrap": "^2.10.10",
  375. "react-chartjs-2": "^5.0.1",
  376. "react-color": "^2.19.3",
  377. "react-dnd": "^16.0.1",
  378. "react-dnd-html5-backend": "^16.0.1",
  379. "react-dom": "^18.3.1",
  380. "react-error-boundary": "^5.0.0",
  381. "react-google-recaptcha": "^3.1.0",
  382. "react-i18next": "^13.3.1",
  383. "react-linkify": "^1.0.0-alpha",
  384. "react-markdown": "^10.1.0",
  385. "react-refresh": "^0.14.0",
  386. "react-resizable-panels": "^2.1.1",
  387. "react-syntax-highlighter": "^15.6.6",
  388. "reflect-metadata": "^0.2.2",
  389. "rehype-external-links": "^3.0.0",
  390. "rehype-katex": "^7.0.1",
  391. "rehype-sanitize": "^6.0.0",
  392. "remark-math": "^6.0.0",
  393. "resolve-url-loader": "^5.0.0",
  394. "samlp": "^7.0.2",
  395. "sandboxed-module": "overleaf/node-sandboxed-module#cafa2d60f17ce75cc023e6f296eb8de79d92d35d",
  396. "sass": "^1.77.1",
  397. "sass-loader": "^14.2.1",
  398. "scroll-into-view-if-needed": "^2.2.25",
  399. "sinon": "^7.5.0",
  400. "sinon-chai": "^3.7.0",
  401. "sinon-mongoose": "^2.3.0",
  402. "storybook": "^8.6.12",
  403. "stylelint-config-standard-scss": "^13.1.0",
  404. "tailwindcss": "^3.4.4",
  405. "terser-webpack-plugin": "^5.3.9",
  406. "thread-loader": "^4.0.2",
  407. "timekeeper": "^2.2.0",
  408. "to-string-loader": "^1.2.0",
  409. "ts-loader": "^9.5.2",
  410. "tty-browserify": "^0.0.1",
  411. "typescript": "^5.8.3",
  412. "use-stick-to-bottom": "^1.1.1",
  413. "uuid": "^9.0.1",
  414. "vitest": "^3.1.2",
  415. "w3c-keyname": "^2.2.8",
  416. "webpack": "^5.98.0",
  417. "webpack-assets-manifest": "^5.2.1",
  418. "webpack-cli": "^5.1.4",
  419. "webpack-dev-server": "^5.2.1",
  420. "webpack-merge": "^5.10.0",
  421. "yup": "^0.32.11",
  422. "zustand": "^5.0.1"
  423. },
  424. "overrides": {
  425. "ejs": "$ejs"
  426. }
  427. }