mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 01:29:35 +02:00
* fix: correct typedef for Document in helpers.mjs * add move-migrations codemod * update migration paths to use shared migrations directory * move migrations to shared location * fix: update Dockerfile and docker-compose.ci.yml to include migrations directory * feat: add migrations tool to workspaces in package.json * [monorepo] Fix order of docker ignore rules * [web] remove unused docker ignore file * [monorepo] replace old references to migrations folder * [server-ce] copy migrations from new place * [migrations] Inline web scripts Co-authored-by: Brian Gough <brian.gough@overleaf.com> * [migrations] move three web scripts over Co-authored-by: Brian Gough <brian.gough@overleaf.com> * [migrations] add missing collection Co-authored-by: Brian Gough <brian.gough@overleaf.com> * [migrations] remove lodash dependency Co-authored-by: Brian Gough <brian.gough@overleaf.com> * [migrations] avoid mongodb-legacy dependency Co-authored-by: Brian Gough <brian.gough@overleaf.com> * [monorepo] run migrations from tools/migrations Co-authored-by: Brian Gough <brian.gough@overleaf.com> * [migrations] simplify migration for adding gitBridge feature to users * [monorepo] run migrations from tests in all the services * [migrations] add Jenkins pipeline for linting/formatting * [monorepo] fixup running web migrations everywhere * [monorepo] trigger Jenkins builds on changes to mongo migrations * [migrations] add Jenkins pipeline for linting/formatting * [monorepo] build scripts: update devDependencies before deps scanning * [monorepo] build scripts: formerly depend on tools/migrations * [monorepo] run eslint on .mjs files * [migrations] enable more eslint rules and fix all the errors * [rake] fix migrations:list task --------- Co-authored-by: Jakob Ackermann <jakob.ackermann@overleaf.com> GitOrigin-RevId: 14cf69cc1b9405bbc75adbb9a000e555500e0614
83 lines
2.3 KiB
JSON
83 lines
2.3 KiB
JSON
{
|
|
"name": "overleaf",
|
|
"private": true,
|
|
"dependencies": {
|
|
"patch-package": "^8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.0",
|
|
"@types/chai-as-promised": "^7.1.8",
|
|
"@types/mocha": "^10.0.6",
|
|
"@typescript-eslint/eslint-plugin": "^8.30.1",
|
|
"@typescript-eslint/parser": "^8.30.1",
|
|
"eslint": "^8.15.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-config-standard": "^17.0.0",
|
|
"eslint-plugin-chai-expect": "^3.0.0",
|
|
"eslint-plugin-chai-friendly": "^0.7.2",
|
|
"eslint-plugin-cypress": "^2.15.1",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-mocha": "^10.1.0",
|
|
"eslint-plugin-n": "^15.7.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint-plugin-promise": "^6.0.0",
|
|
"eslint-plugin-unicorn": "^56.0.0",
|
|
"prettier": "3.6.2",
|
|
"prettier-plugin-groovy": "0.2.1",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"engines": {
|
|
"npm": "11.4.2"
|
|
},
|
|
"overrides": {
|
|
"swagger-tools@0.10.4": {
|
|
"path-to-regexp": "3.3.0",
|
|
"body-parser": "1.20.3",
|
|
"multer": "2.0.2"
|
|
},
|
|
"request@2.88.2": {
|
|
"tough-cookie": "5.1.2",
|
|
"form-data": "2.5.5"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --list-different $PWD/'**/*.js'",
|
|
"format:fix": "prettier --write $PWD/'**/*.js'",
|
|
"format:jenkins": "prettier --list-different $PWD/'**/Jenkinsfile'",
|
|
"format:jenkins:fix": "prettier --write $PWD/'**/Jenkinsfile'",
|
|
"lint": "eslint --max-warnings 0 --format unix .",
|
|
"lint:fix": "eslint --fix .",
|
|
"postinstall": "patch-package"
|
|
},
|
|
"workspaces": [
|
|
"jobs/mirror-documentation",
|
|
"libraries/*",
|
|
"server-ce/test",
|
|
"services/analytics",
|
|
"services/chat",
|
|
"services/clsi",
|
|
"services/clsi-cache",
|
|
"services/clsi-perf",
|
|
"services/contacts",
|
|
"services/docstore",
|
|
"services/document-updater",
|
|
"services/filestore",
|
|
"services/freegeoip",
|
|
"services/github-sync",
|
|
"services/history-v1",
|
|
"services/idp",
|
|
"services/latexqc",
|
|
"services/notifications",
|
|
"services/project-history",
|
|
"services/real-time",
|
|
"services/references",
|
|
"services/templates",
|
|
"services/third-party-datastore",
|
|
"services/third-party-references",
|
|
"services/tpdsworker",
|
|
"services/web",
|
|
"tools/saas-e2e",
|
|
"tools/migrations"
|
|
]
|
|
}
|