mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
* Upgrade lodash resolution to 4.18.1 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * update lodash in rest of packages --------- Co-authored-by: Eric Mc Sween <5454374+emcsween@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: Anna Fields <acfields11@gmail.com> GitOrigin-RevId: 66ce1610993a592899c25155757ca3267ebcd5c1
79 lines
2.6 KiB
JSON
79 lines
2.6 KiB
JSON
{
|
|
"name": "overleaf-editor",
|
|
"version": "1.0.0",
|
|
"description": "Overleaf Editor.",
|
|
"author": "",
|
|
"license": "Proprietary",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@google-cloud/secret-manager": "^5.6.0",
|
|
"@overleaf/fetch-utils": "workspace:*",
|
|
"@overleaf/logger": "workspace:*",
|
|
"@overleaf/metrics": "workspace:*",
|
|
"@overleaf/mongo-utils": "workspace:*",
|
|
"@overleaf/o-error": "workspace:*",
|
|
"@overleaf/object-persistor": "workspace:*",
|
|
"@overleaf/promise-utils": "workspace:*",
|
|
"@overleaf/redis-wrapper": "workspace:*",
|
|
"@overleaf/settings": "workspace:*",
|
|
"@overleaf/stream-utils": "^0.1.0",
|
|
"@overleaf/validation-tools": "workspace:*",
|
|
"archiver": "^5.3.0",
|
|
"basic-auth": "^2.0.1",
|
|
"bluebird": "^3.7.2",
|
|
"body-parser": "1.20.4",
|
|
"bull": "^4.16.5",
|
|
"bunyan": "^1.8.12",
|
|
"check-types": "^11.1.2",
|
|
"command-line-args": "^3.0.3",
|
|
"config": "^3.3.12",
|
|
"express": "4.22.1",
|
|
"fs-extra": "^9.0.1",
|
|
"generic-pool": "^2.1.1",
|
|
"helmet": "^3.22.0",
|
|
"http-status": "^1.4.2",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"knex": "^2.4.0",
|
|
"lodash": "^4.18.1",
|
|
"mongodb": "6.12.0",
|
|
"overleaf-editor-core": "workspace:*",
|
|
"p-limit": "^6.2.0",
|
|
"p-queue": "^8.1.0",
|
|
"pg": "^8.7.1",
|
|
"pg-query-stream": "^4.2.4",
|
|
"temp": "^0.8.3",
|
|
"throng": "^4.0.0",
|
|
"tsscmp": "^1.0.6",
|
|
"utf-8-validate": "^5.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@overleaf/migrations": "workspace:*",
|
|
"benny": "^3.7.1",
|
|
"chai": "^4.3.6",
|
|
"chai-as-promised": "^7.1.1",
|
|
"chai-exclude": "^2.1.1",
|
|
"mocha": "^11.1.0",
|
|
"mocha-junit-reporter": "^2.2.1",
|
|
"mocha-multi-reporters": "^1.5.1",
|
|
"node-fetch": "^2.7.0",
|
|
"sinon": "^9.0.2",
|
|
"typescript": "^5.0.4",
|
|
"yauzl": "^2.9.1"
|
|
},
|
|
"scripts": {
|
|
"start": "node app.js",
|
|
"lint": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --max-warnings 0 --format unix .",
|
|
"lint:fix": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --fix .",
|
|
"test:unit": "yarn run test:unit:_run -- --grep=$MOCHA_GREP",
|
|
"test:acceptance": "yarn run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
|
"test:unit:_run": "mocha --recursive --exit $@ test/unit/js",
|
|
"test:acceptance:_run": "mocha --recursive --timeout 15000 --exit --retries=$RETRIES $@ test/acceptance/js",
|
|
"nodemon": "node --watch app.js",
|
|
"migrate": "knex migrate:latest",
|
|
"delete_old_chunks": "node storage/tasks/delete_old_chunks.js",
|
|
"fix_duplicate_versions": "node storage/tasks/fix_duplicate_versions.js",
|
|
"benchmarks": "node benchmarks/index.js",
|
|
"types:check": "tsc --noEmit"
|
|
}
|
|
}
|