Files
dailytrends/package.json
albert fb433cfac1 + adding hono and @hono/node-server
+ reemplazar index por server.ts
+ implement a basic server.ts in server.ts
2025-07-28 19:13:27 +02:00

45 lines
1.2 KiB
JSON

{
"name": "dailytrends",
"version": "0.0.1",
"description": "DailyTrends es un periódico que une las portadas de los periódicos número uno.",
"homepage": "https://github.com/aabril/dailytrends#readme",
"bugs": {
"url": "https://github.com/aabril/dailytrends/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aabril/dailytrends.git"
},
"license": "AGPL-3.0-or-later",
"author": "Albert Abril",
"type": "module",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"jest": "^30.0.5",
"pino-pretty": "^13.0.0",
"ts-jest": "^29.4.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@hono/node-server": "^1.17.1",
"hono": "^4.8.9",
"mongoose": "^8.16.5",
"pino": "^9.7.0"
}
}