-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.04 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "pulsepress",
"version": "1.0.0",
"description": "Enterprise-grade AI-powered news aggregation backend with 11 intelligent features including real-time content enhancement, sentiment analysis, smart summarization, and personalized recommendations. Built with TypeScript, Node.js, MongoDB, and Google Gemini AI.",
"author": "Padmanabha Das",
"keywords": [
"ai-news-platform",
"news-aggregator",
"gemini-ai",
"huggingface",
"sentiment-analysis",
"content-summarization",
"nodejs-backend",
"typescript",
"mongodb",
"express-api",
"machine-learning",
"news-api",
"rss-parser",
"google-translate",
"oauth2-authentication",
"jwt-tokens",
"real-time-processing",
"content-personalization",
"news-insights",
"multi-language-support"
],
"license": "ISC",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon --exec 'ts-node' src/server.ts",
"build": "tsc"
},
"dependencies": {
"@google-cloud/translate": "^9.2.0",
"@google/generative-ai": "^0.24.1",
"@huggingface/inference": "^4.6.1",
"@mozilla/readability": "^0.6.0",
"@types/bcryptjs": "^3.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/uuid": "^10.0.0",
"axios": "^1.11.0",
"bcryptjs": "^3.0.2",
"cheerio": "^1.1.2",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"fuse.js": "^7.0.0",
"googleapis": "^154.0.0",
"jsdom": "^26.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.5",
"morgan": "^1.10.1",
"nanoid": "^5.1.5",
"newsapi": "^2.4.1",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.5",
"rss-parser": "^3.13.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/jsdom": "^21.1.7",
"@types/morgan": "^1.9.10",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}