package.json 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  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": "bin/test_acceptance_run_dir",
  11. "test:acceptance:app": "yarn run test:acceptance:run_dir -- test/acceptance/src",
  12. "test:acceptance:app:debug": "yarn run test:acceptance:debug:run_dir -- test/acceptance/src",
  13. "test:acceptance:debug:run_dir": "mocha --recursive --timeout 25000 --grep=${MOCHA_GREP:-} --require test/acceptance/bootstrap.js --inspect=0.0.0.0:19999 --inspect-brk",
  14. "test:unit:run_dir": "bin/test_unit_run_dir",
  15. "test:unit:all": "yarn run test:unit:run_dir test/unit/src modules/*/test/unit/src",
  16. "test:unit:all:silent": "yarn run test:unit:all --reporter dot",
  17. "test:unit:app": "yarn run test:unit:run_dir test/unit/src",
  18. "test:unit": "vitest run",
  19. "test:unit:parallel": "vitest run --project=Parallel",
  20. "test:unit:sequential": "vitest run --project=Sequential",
  21. "test:unit: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 yarn 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. "pyodide:fetch": "node scripts/fetch-pyodide-packages.mjs",
  30. "webpack:profile": "webpack --config webpack.config.prod.js --profile --json > stats.json",
  31. "lint": "eslint --cache --cache-location ../../.cache/eslint/ --max-warnings 0 --format unix .",
  32. "lint:fix": "eslint --cache --cache-location ../../.cache/eslint/ --fix .",
  33. "lint:styles": "stylelint --cache --cache-location ../../.cache/stylelint/ '**/*.scss'",
  34. "lint:styles:fix": "stylelint --cache --cache-location ../../.cache/stylelint/ '**/*.scss' --fix",
  35. "type-check": "tsc --noEmit",
  36. "type-check:backend": "tsc -p tsconfig.backend.json --noEmit",
  37. "extract-translations": "i18next-scanner",
  38. "convert-themes": "node frontend/js/features/source-editor/themes/scripts/convert.js",
  39. "cypress:open-ct": "OVERLEAF_CONFIG=$(pwd)/config/settings.webpack.js cypress open --component",
  40. "cypress:run-ct": "OVERLEAF_CONFIG=$(pwd)/config/settings.webpack.js cypress run --component --browser chrome",
  41. "cypress:docker:open-ct": "USER_UID=$(id -u) USER_GID=$(id -g) docker compose -f docker-compose.cypress.yml run --rm cypress yarn run cypress:open-ct",
  42. "cypress:docker:run-ct": "USER_UID=$(id -u) USER_GID=$(id -g) docker compose -f docker-compose.cypress.yml run --rm cypress yarn run cypress:run-ct --browser chrome",
  43. "lezer-latex:generate": "node scripts/lezer-latex/generate.mjs",
  44. "lezer-latex:run": "node scripts/lezer-latex/run.mjs",
  45. "lezer-latex:benchmark": "node scripts/lezer-latex/benchmark.mjs",
  46. "lezer-latex:benchmark-incremental": "node scripts/lezer-latex/test-incremental-parser.mjs",
  47. "routes": "bin/routes",
  48. "storybook": "storybook dev -p 6006 --no-open",
  49. "build-storybook": "storybook build",
  50. "build-unfilled-fonts": "node frontend/fonts/material-symbols/build-unfilled.mjs",
  51. "precompile-pug": "node app/src/infrastructure/Views.mjs",
  52. "local:nodemon": "set -a;. ../../config/dev-environment.env;. ./docker-compose.common.env;. ../../config/local-dev.env;. ./local-dev.env;. ../../config/local.env;. ../../config/domain.env; set +a; echo $OVERLEAF_CONFIG; WEB_PORT=13000 LISTEN_ADDRESS=0.0.0.0 yarn run nodemon",
  53. "local:webpack": "set -a;. ../../config/dev-environment.env;. ./docker-compose.common.env;. ../../config/local-dev.env;. ./local-dev.env;. ../../config/local.env;. ../../config/domain.env; set +a; PORT=13808 OVERLEAF_CONFIG=$(pwd)/config/settings.webpack.js yarn run webpack",
  54. "local:test:acceptance:run_dir": "set -a;. $(pwd)/docker-compose.common.env;. $(pwd)/local-test.env; set +a; yarn run test:acceptance:run_dir",
  55. "local:test:acceptance:run_app": "OVERLEAF_CONFIG=$(pwd)/test/acceptance/config/settings.test.${OVERLEAF_APP}.js yarn run local:test:acceptance:run_dir -- $(pwd)/test/acceptance/src",
  56. "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 yarn run local:test:acceptance:run_dir -- $(pwd)/modules/${MODULE}/test/acceptance",
  57. "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 yarn run local:test:acceptance:run_module || exit 255' $1",
  58. "local:test:acceptance:app:saas": "OVERLEAF_APP=saas yarn run local:test:acceptance:run_app",
  59. "local:test:acceptance:app:server-pro": "OVERLEAF_APP=server-pro yarn run local:test:acceptance:run_app",
  60. "local:test:acceptance:app:server-ce": "OVERLEAF_APP=server-ce yarn run local:test:acceptance:run_app",
  61. "local:test:acceptance:app": "echo saas server-pro server-ce | xargs -n1 sh -c 'yarn run local:test:acceptance:app:${0} || exit 255'",
  62. "local:test:acceptance:modules:saas": "OVERLEAF_APP=saas yarn run local:test:acceptance:run_modules",
  63. "local:test:acceptance:modules:server-pro": "OVERLEAF_APP=server-pro yarn run local:test:acceptance:run_modules",
  64. "local:test:acceptance:modules:server-ce": "OVERLEAF_APP=server-ce yarn run local:test:acceptance:run_modules",
  65. "local:test:acceptance:modules": "echo saas server-ce server-pro | xargs -n1 sh -c 'yarn run local:test:acceptance:modules:${0} || exit 255'",
  66. "local:test:acceptance": "yarn run local:test:acceptance:app && yarn run local:test:acceptance:modules",
  67. "local:test:unit": "yarn run test:unit:all",
  68. "local:test:frontend": "yarn run test:frontend",
  69. "local:test": "yarn run local:test:unit && yarn run local:test:frontend && yarn run local:test:acceptance",
  70. "knip": "knip --config knip.ts"
  71. },
  72. "browserslist": [
  73. "defaults and supports woff2",
  74. "last 1 year",
  75. "safari > 14"
  76. ],
  77. "dependencies": {
  78. "@ai-sdk/google-vertex": "^4.0.113",
  79. "@ai-sdk/mcp": "patch:@ai-sdk/mcp@npm%3A1.0.37#~/.yarn/patches/@ai-sdk-mcp-npm-1.0.37-8cd89b8972.patch",
  80. "@ai-sdk/openai": "^3.0.54",
  81. "@aws-sdk/client-ses": "^3.994.0",
  82. "@contentful/rich-text-html-renderer": "^16.0.2",
  83. "@contentful/rich-text-types": "^16.0.2",
  84. "@customerio/cdp-analytics-node": "^0.3.9",
  85. "@google-cloud/bigquery": "^8.1.1",
  86. "@google-cloud/storage": "^7.19.0",
  87. "@node-oauth/oauth2-server": "^5.3.0",
  88. "@node-saml/passport-saml": "^5.1.0",
  89. "@overleaf/access-token-encryptor": "workspace:*",
  90. "@overleaf/fetch-utils": "workspace:*",
  91. "@overleaf/logger": "workspace:*",
  92. "@overleaf/metrics": "workspace:*",
  93. "@overleaf/migrations": "workspace:*",
  94. "@overleaf/mongo-utils": "workspace:*",
  95. "@overleaf/o-error": "workspace:*",
  96. "@overleaf/object-persistor": "workspace:*",
  97. "@overleaf/promise-utils": "workspace:*",
  98. "@overleaf/redis-wrapper": "workspace:*",
  99. "@overleaf/settings": "workspace:*",
  100. "@overleaf/stream-utils": "workspace:*",
  101. "@overleaf/validation-tools": "workspace:*",
  102. "@phosphor-icons/react": "^2.1.7",
  103. "@phosphor-icons/webcomponents": "^2.1.5",
  104. "@slack/webhook": "^7.0.2",
  105. "@stripe/react-stripe-js": "^3.9.0",
  106. "@stripe/stripe-js": "^7.7.0",
  107. "@tanstack/react-table": "^8.21.3",
  108. "@xmldom/xmldom": "^0.8.13",
  109. "accepts": "^1.3.7",
  110. "ai": "^6.0.169",
  111. "ajv": "^8.12.0",
  112. "archiver": "^5.3.0",
  113. "async": "^3.2.5",
  114. "base-x": "^4.0.1",
  115. "basic-auth": "^2.0.1",
  116. "bcrypt": "^6.0.0",
  117. "body-parser": "1.20.4",
  118. "bowser": "^2.11.0",
  119. "bull": "^3.18.0",
  120. "bunyan": "^1.8.15",
  121. "cache-flow": "^1.9.0",
  122. "connect-redis": "^6.1.3",
  123. "content-disposition": "^0.5.0",
  124. "contentful": "^10.8.5",
  125. "cookie": "^0.2.3",
  126. "cookie-parser": "1.4.6",
  127. "crc-32": "^1.2.2",
  128. "csurf": "^1.11.0",
  129. "csv": "^6.2.5",
  130. "dateformat": "1.0.4-1.2.3",
  131. "ejs": "^3.1.10",
  132. "email-addresses": "^5.0.0",
  133. "eventsource-parser": "^1.1.2",
  134. "express": "4.22.1",
  135. "express-bearer-token": "^2.4.0",
  136. "express-http-proxy": "^1.6.0",
  137. "express-session": "^1.17.1",
  138. "file-type": "^21.3.4",
  139. "focus-trap-react": "^11.0.4",
  140. "form-data": "^4.0.5",
  141. "globby": "^5.0.0",
  142. "helmet": "^6.0.1",
  143. "https-proxy-agent": "^7.0.6",
  144. "i18next": "^23.10.0",
  145. "jose": "^4.3.8",
  146. "json2csv": "^4.3.3",
  147. "jsonwebtoken": "^9.0.3",
  148. "lodash": "^4.18.1",
  149. "lru-cache": "^7.10.1",
  150. "marked": "^4.1.0",
  151. "minimatch": "^10.2.2",
  152. "minimist": "^1.2.7",
  153. "mmmagic": "^0.5.3",
  154. "moment": "^2.29.4",
  155. "mongodb-legacy": "6.1.3",
  156. "mongoose": "8.22.1",
  157. "multer": "2.1.1",
  158. "nocache": "^2.1.0",
  159. "node-fetch": "^2.7.0",
  160. "nodemailer": "^8.0.5",
  161. "on-headers": "^1.0.2",
  162. "otplib": "^12.0.1",
  163. "overleaf-editor-core": "workspace:*",
  164. "p-limit": "^2.3.0",
  165. "p-props": "4.0.0",
  166. "p-queue": "^8.1.0",
  167. "parse-data-url": "^2.0.0",
  168. "passport": "^0.6.0",
  169. "passport-google-oauth20": "^2.0.0",
  170. "passport-ldapauth": "^2.1.4",
  171. "passport-local": "^1.0.0",
  172. "passport-oauth2": "^1.5.0",
  173. "passport-orcid": "0.0.4",
  174. "pug": "^3.0.3",
  175. "pug-runtime": "^3.0.1",
  176. "rate-limiter-flexible": "^2.4.1",
  177. "react-hook-form": "^7.71.1",
  178. "recurly": "^4.0.0",
  179. "referer-parser": "patch:referer-parser@npm%3A0.0.3#~/.yarn/patches/referer-parser-npm-0.0.3.patch",
  180. "request": "2.88.2",
  181. "requestretry": "7.1.0",
  182. "sanitize-html": "^2.17.4",
  183. "stripe": "^18.4.0",
  184. "tough-cookie": "^4.0.0",
  185. "tsscmp": "^1.0.6",
  186. "uid-safe": "^2.1.5",
  187. "utf-8-validate": "^5.0.2",
  188. "valid-data-url": "^2.0.0",
  189. "valid-url": "^1.0.9",
  190. "xml-crypto": "^2.1.6",
  191. "xml2js": "^0.6.2",
  192. "xregexp": "^4.3.0",
  193. "yauzl": "^3.3.0",
  194. "zod": "^4.0.17",
  195. "zod-validation-error": "^4.0.1"
  196. },
  197. "devDependencies": {
  198. "@ai-sdk/react": "^3.0.172",
  199. "@babel/core": "^7.28.5",
  200. "@babel/plugin-proposal-decorators": "^7.28.0",
  201. "@babel/preset-env": "^7.28.5",
  202. "@babel/preset-react": "^7.28.5",
  203. "@babel/preset-typescript": "^7.28.5",
  204. "@babel/register": "^7.28.3",
  205. "@codemirror/autocomplete": "6.18.4",
  206. "@codemirror/commands": "6.10.1",
  207. "@codemirror/lang-markdown": "6.5.0",
  208. "@codemirror/lang-python": "6.2.1",
  209. "@codemirror/language": "6.12.1",
  210. "@codemirror/lint": "6.9.2",
  211. "@codemirror/search": "6.5.8",
  212. "@codemirror/state": "6.5.4",
  213. "@codemirror/view": "6.38.6",
  214. "@eslint/compat": "^2.1.0",
  215. "@eslint/js": "^10.0.1",
  216. "@eslint/json": "^2.0.0",
  217. "@floating-ui/react": "^0.27.5",
  218. "@istanbuljs/esm-loader-hook": "^0.3.0",
  219. "@juggle/resize-observer": "^3.3.1",
  220. "@lezer/common": "1.5.0",
  221. "@lezer/generator": "1.8.0",
  222. "@lezer/highlight": "1.2.3",
  223. "@lezer/lr": "1.4.7",
  224. "@lezer/markdown": "1.6.3",
  225. "@overleaf/codemirror-tree-view": "^0.1.3",
  226. "@overleaf/dictionaries": "https://github.com/overleaf/dictionaries/archive/refs/tags/v0.0.3.tar.gz",
  227. "@overleaf/eslint-plugin": "workspace:*",
  228. "@overleaf/ranges-tracker": "workspace:*",
  229. "@overleaf/stream-utils": "workspace:*",
  230. "@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
  231. "@pollyjs/adapter-node-http": "^6.0.6",
  232. "@pollyjs/core": "^6.0.6",
  233. "@pollyjs/persister-fs": "^6.0.6",
  234. "@replit/codemirror-emacs": "overleaf/codemirror-emacs#4394c03858f27053f8768258e9493866e06e938e",
  235. "@replit/codemirror-indentation-markers": "overleaf/codemirror-indentation-markers#371ce3b56f453a392eb0d3b85ab019c185c68e1f",
  236. "@replit/codemirror-vim": "overleaf/codemirror-vim#1bef138382d948018f3f9b8a4d7a70ab61774e4b",
  237. "@sentry/browser": "7.46.0",
  238. "@storybook/addon-a11y": "10.3.5",
  239. "@storybook/addon-designs": "^11.1.3",
  240. "@storybook/addon-docs": "10.3.5",
  241. "@storybook/addon-links": "10.3.5",
  242. "@storybook/addon-styling-webpack": "^3.0.2",
  243. "@storybook/addon-webpack5-compiler-babel": "^4.0.1",
  244. "@storybook/cli": "10.3.5",
  245. "@storybook/react-webpack5": "10.3.5",
  246. "@streamdown/cjk": "^1.0.2",
  247. "@streamdown/math": "^1.0.2",
  248. "@tailwindcss/container-queries": "^0.1.1",
  249. "@tanstack/react-virtual": "^3.13.23",
  250. "@testing-library/cypress": "10.1.0",
  251. "@testing-library/dom": "^10.4.0",
  252. "@testing-library/jest-dom": "^6.9.1",
  253. "@testing-library/react": "^16.3.2",
  254. "@testing-library/user-event": "^14.5.2",
  255. "@types/algoliasearch": "^3.34.11",
  256. "@types/async": "^3.2.25",
  257. "@types/bootstrap": "^5.2.10",
  258. "@types/chai": "^4.3.0",
  259. "@types/dateformat": "^5.0.3",
  260. "@types/diff": "^5.2.3",
  261. "@types/dom-speech-recognition": "^0.0.7",
  262. "@types/events": "^3.0.3",
  263. "@types/express": "^4.17.23",
  264. "@types/minimist": "^1.2.5",
  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/sanitize-html": "^2.14.0",
  276. "@types/sinon-chai": "^3.2.12",
  277. "@types/utf-8-validate": "^5.0.2",
  278. "@types/uuid": "^10.0.0",
  279. "@uppy/core": "^3.8.0",
  280. "@uppy/dashboard": "3.7.1",
  281. "@uppy/drag-drop": "3.0.3",
  282. "@uppy/file-input": "3.0.4",
  283. "@uppy/progress-bar": "3.0.4",
  284. "@uppy/react": "3.2.1",
  285. "@uppy/utils": "^5.7.0",
  286. "@uppy/xhr-upload": "3.6.0",
  287. "@vitest/coverage-istanbul": "^4.0.17",
  288. "@vitest/eslint-plugin": "1.6.6",
  289. "@vitest/mocker": "^4.0.15",
  290. "@writefull/core": "^1.27.27",
  291. "@writefull/ui": "^1.27.27",
  292. "@writefull/utils": "^1.27.27",
  293. "abort-controller": "^3.0.0",
  294. "acorn": "^7.1.1",
  295. "acorn-walk": "^7.1.1",
  296. "algoliasearch": "^3.35.1",
  297. "autoprefixer": "^10.4.16",
  298. "axios": "^1.15.0",
  299. "babel-loader": "^10.1.1",
  300. "babel-plugin-macros": "^3.1.0",
  301. "babel-plugin-module-resolver": "^5.0.2",
  302. "backbone": "^1.6.0",
  303. "bootstrap": "^5.3.7",
  304. "c8": "^7.2.0",
  305. "chai": "^4.3.6",
  306. "chai-as-promised": "^7.1.1",
  307. "chai-exclude": "^2.0.3",
  308. "chart.js": "^4.0.1",
  309. "chartjs-adapter-moment": "^1.0.1",
  310. "chartjs-plugin-datalabels": "^2.2.0",
  311. "cheerio": "1.0.0-rc.10",
  312. "classnames": "^2.2.6",
  313. "confusing-browser-globals": "^1.0.11",
  314. "cookie-signature": "^1.2.1",
  315. "copy-webpack-plugin": "^14.0.0",
  316. "core-js": "~3.46.0",
  317. "css-loader": "^7.1.4",
  318. "css-minimizer-webpack-plugin": "^8.0.0",
  319. "cypress": "15.12.0",
  320. "cypress-multi-reporters": "^2.0.5",
  321. "cypress-plugin-tab": "^1.0.5",
  322. "d3": "^3.5.16",
  323. "daterangepicker": "2.1.27",
  324. "diff": "^5.1.0",
  325. "dompurify": "^3.3.2",
  326. "downshift": "^9.0.9",
  327. "es6-promise": "^4.2.8",
  328. "escodegen": "^2.0.0",
  329. "eslint-config-prettier": "^10.1.8",
  330. "eslint-plugin-chai-expect": "^4.1.0",
  331. "eslint-plugin-chai-friendly": "^1.2.0",
  332. "eslint-plugin-import": "^2.32.0",
  333. "eslint-plugin-jsx-a11y": "^6.10.2",
  334. "eslint-plugin-mocha": "^11.3.0",
  335. "eslint-plugin-n": "^18.0.1",
  336. "eslint-plugin-promise": "^7.3.0",
  337. "eslint-plugin-react": "^7.37.5",
  338. "eslint-plugin-react-hooks": "^5.2.0",
  339. "eslint-plugin-storybook": "10.3.5",
  340. "eslint-plugin-testing-library": "7.5.3",
  341. "eslint-plugin-unicorn": "^56.0.0",
  342. "events": "^3.3.0",
  343. "eventsource-client": "^1.1.4",
  344. "fake-indexeddb": "^6.0.0",
  345. "fast-fuzzy": "^1.12.0",
  346. "fetch-mock": "^12.6.0",
  347. "formik": "^2.2.9",
  348. "glob": "^12.0.0",
  349. "globals": "^17.6.0",
  350. "handlebars": "^4.7.9",
  351. "handlebars-loader": "^1.7.3",
  352. "html-webpack-plugin": "^5.6.7",
  353. "i18next-scanner": "4.4.0",
  354. "idb": "^8.0.0",
  355. "inversify": "^6.2.2",
  356. "jquery": "^3.7.1",
  357. "jscodeshift": "^17.0.0",
  358. "jsdom": "^27.4.0",
  359. "jsdom-global": "^3.0.2",
  360. "katex": "^0.16.28",
  361. "knip": "^5.64.1",
  362. "lottie-react": "^2.4.1",
  363. "match-sorter": "^6.2.0",
  364. "mathjax": "^4.1.2",
  365. "mediatr-ts": "^2.0.1",
  366. "mensch": "^0.3.4",
  367. "micromark": "^4.0.0",
  368. "mini-css-extract-plugin": "^2.7.6",
  369. "minisearch": "^7.2.0",
  370. "mocha": "^11.1.0",
  371. "mocha-each": "^2.0.1",
  372. "mocha-junit-reporter": "^2.2.1",
  373. "mocha-multi-reporters": "^1.5.1",
  374. "nock": "^13.5.6",
  375. "nvd3": "^1.8.6",
  376. "nyc": "^17.1.0",
  377. "p-reflect": "^3.1.0",
  378. "path-browserify": "^1.0.1",
  379. "pdfjs-dist": "5.1.91",
  380. "pirates": "^4.0.1",
  381. "postcss": "^8.4.31",
  382. "postcss-loader": "^7.3.4",
  383. "prop-types": "^15.7.2",
  384. "pyodide": "0.29.3",
  385. "qrcode": "^1.4.4",
  386. "react": "^18.3.1",
  387. "react-bootstrap": "^2.10.10",
  388. "react-chartjs-2": "^5.0.1",
  389. "react-color": "^2.19.3",
  390. "react-dnd": "^16.0.1",
  391. "react-dnd-html5-backend": "^16.0.1",
  392. "react-dom": "^18.3.1",
  393. "react-error-boundary": "^5.0.0",
  394. "react-google-recaptcha": "^3.1.0",
  395. "react-i18next": "^13.3.1",
  396. "react-linkify": "^1.0.0-alpha",
  397. "react-refresh": "^0.14.0",
  398. "react-resizable-panels": "^2.1.1",
  399. "react-syntax-highlighter": "^15.6.6",
  400. "reflect-metadata": "^0.2.2",
  401. "rehype-harden": "^1.1.6",
  402. "rehype-sanitize": "^6.0.0",
  403. "resolve-url-loader": "^5.0.0",
  404. "samlp": "^7.0.2",
  405. "sass": "^1.77.1",
  406. "sass-loader": "^14.2.1",
  407. "scroll-into-view-if-needed": "^2.2.25",
  408. "sinon": "^7.5.0",
  409. "sinon-chai": "^3.7.0",
  410. "sinon-mongoose": "^2.3.0",
  411. "storybook": "10.3.5",
  412. "streamdown": "^2.2.0",
  413. "style-loader": "^4.0.0",
  414. "stylelint": "^16.26.1",
  415. "stylelint-config-standard-scss": "^13.1.0",
  416. "tailwindcss": "^3.4.4",
  417. "terser-webpack-plugin": "^5.4.0",
  418. "thread-loader": "patch:thread-loader@npm%3A4.0.2#~/.yarn/patches/thread-loader-npm-4.0.2-dab5735f54.patch",
  419. "timekeeper": "^2.2.0",
  420. "to-string-loader": "^1.2.0",
  421. "ts-loader": "^9.5.7",
  422. "tty-browserify": "^0.0.1",
  423. "typescript": "^5.9.3",
  424. "unified": "^11.0.5",
  425. "unist-util-visit": "^5.0.0",
  426. "use-stick-to-bottom": "^1.1.1",
  427. "uuid": "^11.0.0",
  428. "vitest": "4.1.5",
  429. "w3c-keyname": "^2.2.8",
  430. "webpack": "^5.106.2",
  431. "webpack-assets-manifest": "^6.5.1",
  432. "webpack-cli": "^7.0.2",
  433. "webpack-dev-server": "^5.2.3",
  434. "webpack-merge": "^6.0.1",
  435. "yup": "^0.32.11",
  436. "zustand": "^5.0.1"
  437. }
  438. }