overleaf/package.json
Eric Mc Sween 06e2afa276 Merge pull request #6956 from overleaf/em-full-project-history-build-scripts
Move full project history service to build scripts

GitOrigin-RevId: 13c7d825531734eee6aff339faf2f00952f00260
2022-03-16 09:03:23 +00:00

47 lines
1.3 KiB
JSON

{
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"prettier": "2.5.1"
},
"scripts": {
"format": "prettier --list-different $PWD/'**/*.js'",
"format:fix": "prettier --write $PWD/'**/*.js'",
"lint": "eslint --max-warnings 0 --format unix .",
"lint:fix": "eslint --fix ."
},
"workspaces": [
"libraries/*",
"services/analytics",
"services/chat",
"services/clsi",
"services/clsi-perf",
"services/contacts",
"services/docstore",
"services/document-updater",
"services/filestore",
"services/github-sync",
"services/history-v1",
"services/k8s-debugger",
"services/notifications",
"services/project-archiver",
"services/project-history",
"services/real-time",
"services/references",
"services/spelling",
"services/templates",
"services/third-party-datastore",
"services/third-party-references",
"services/tpdsworker",
"services/track-changes",
"services/web"
]
}