-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 786 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "tech-news-api",
"version": "1.0.0",
"type": "module",
"description": "Backend API for TechNews aggregator using Hono + Bun",
"main": "src/index.ts",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@google/genai": "^1.33.0",
"hono": "^4.6.14",
"mongodb": "^7.0.0",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0",
"twitter-api-v2": "^1.28.0"
},
"devDependencies": {
"@types/bun": "latest",
"@vitest/ui": "^4.0.15",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}