mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
e87df4a791
Simpler Typescript setup in the backend GitOrigin-RevId: 3a90f26a5ac8029d14203faa98008375ce933e7d
31 lines
977 B
JSON
31 lines
977 B
JSON
{
|
|
"name": "overleaf-editor-core",
|
|
"version": "1.0.0",
|
|
"description": "Library shared between the editor server and clients.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "npm run lint && npm run format && npm run types:check && npm run test:unit",
|
|
"format": "prettier --list-different $PWD/'**/*.{js,cjs}'",
|
|
"format:fix": "prettier --write $PWD/'**/*.{js,cjs}'",
|
|
"lint": "eslint --ext .js --ext .cjs --max-warnings 0 --format unix .",
|
|
"lint:fix": "eslint --fix --ext .js --ext .cjs .",
|
|
"test:ci": "npm run test:unit",
|
|
"test:unit": "mocha --exit test/**/*.{js,cjs}",
|
|
"types:check": "tsc --noEmit"
|
|
},
|
|
"author": "team@overleaf.com",
|
|
"license": "Proprietary",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"chai": "^3.3.0",
|
|
"mocha": "^10.2.0",
|
|
"sinon": "^9.2.4",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"dependencies": {
|
|
"@overleaf/o-error": "*",
|
|
"check-types": "^5.1.0",
|
|
"lodash": "^4.17.19",
|
|
"p-map": "^4.0.0"
|
|
}
|
|
}
|