-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 796 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 796 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
32
{
"name": "@curatedotfun/rss-service",
"version": "0.0.11",
"description": "RSS service for curatedotfun",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsc && node dist/index.js",
"build": "tsc",
"start": "node dist/index.js",
"lint": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"@hono/zod-validator": "^0.4.3",
"@types/ioredis": "^5.0.0",
"@upstash/redis": "^1.22.0",
"dotenv": "^16.4.7",
"feed": "^4.2.2",
"hono": "^4.7.4",
"ioredis": "^5.5.0",
"node-html-parser": "^7.0.1",
"sanitize-html": "^2.11.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
}
}