package.json 18 KB

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