mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-07 07:37:11 -04:00
Added typescript support for most backend files.
This commit is contained in:
parent
d6abab6c74
commit
331cf3d79f
46 changed files with 19975 additions and 7995 deletions
|
@ -49,7 +49,7 @@
|
|||
"jsonminify": "0.4.2",
|
||||
"languages4translatewiki": "0.1.3",
|
||||
"lodash.clonedeep": "4.5.0",
|
||||
"log4js": "0.6.38",
|
||||
"log4js": "^6.9.1",
|
||||
"measured-core": "^2.0.0",
|
||||
"mime-types": "^2.1.35",
|
||||
"npm": "^6.14.15",
|
||||
|
@ -90,7 +90,11 @@
|
|||
"sinon": "^13.0.2",
|
||||
"split-grid": "^1.0.11",
|
||||
"supertest": "^6.3.3",
|
||||
"typescript": "^4.9.5"
|
||||
"typescript": "^4.9.5",
|
||||
"@types/node": "^20.3.1",
|
||||
"@types/express": "4.17.17",
|
||||
"concurrently": "^8.2.0",
|
||||
"nodemon": "^2.0.22"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.15.0",
|
||||
|
@ -103,8 +107,10 @@
|
|||
"scripts": {
|
||||
"lint": "eslint .",
|
||||
"test": "mocha --timeout 120000 --recursive tests/backend/specs ../node_modules/ep_*/static/tests/backend/specs",
|
||||
"test-container": "mocha --timeout 5000 tests/container/specs/api"
|
||||
"test-container": "mocha --timeout 5000 tests/container/specs/api",
|
||||
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/server.js\""
|
||||
},
|
||||
"version": "1.9.0",
|
||||
"license": "Apache-2.0"
|
||||
"license": "Apache-2.0",
|
||||
"type": "module"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue