mirror of
https://github.com/sakaljurgis/kobo.git
synced 2026-07-08 22:17:42 +00:00
34 lines
871 B
JSON
34 lines
871 B
JSON
{
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.17",
|
|
"@types/node": "^20.4.5",
|
|
"@types/sanitize-html": "^2.9.0",
|
|
"gts": "^5.0.0",
|
|
"nodemon": "^3.0.1",
|
|
"typescript": "~5.1.6"
|
|
},
|
|
"scripts": {
|
|
"lint": "gts lint",
|
|
"clean": "gts clean",
|
|
"compile": "tsc",
|
|
"fix": "gts fix",
|
|
"prepare": "npm run compile",
|
|
"pretest": "npm run compile",
|
|
"posttest": "npm run lint",
|
|
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
|
|
"prod": "ts-node src/index.ts",
|
|
"start": "bash ./start.sh"
|
|
},
|
|
"dependencies": {
|
|
"@elastic/elasticsearch": "^8.11.0",
|
|
"@extractus/article-extractor": "^7.3.1",
|
|
"cheerio": "^1.0.0-rc.12",
|
|
"express": "^4.18.2",
|
|
"express-handlebars": "^7.1.2",
|
|
"fs-promise": "^0.3.1",
|
|
"jszip": "^2.5.0",
|
|
"ts-node": "^10.9.1",
|
|
"xml-mapping": "^1.7.0"
|
|
}
|
|
}
|