mirror of
https://github.com/sakaljurgis/kobo.git
synced 2026-07-08 22:17:42 +00:00
28 lines
682 B
JSON
28 lines
682 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"
|
|
},
|
|
"dependencies": {
|
|
"@extractus/article-extractor": "^7.3.1",
|
|
"cheerio": "^1.0.0-rc.12",
|
|
"express": "^4.18.2",
|
|
"express-handlebars": "^7.1.2",
|
|
"ts-node": "^10.9.1"
|
|
}
|
|
}
|