-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "news-automation",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:backend": "tsx watch src/backend/api/index.ts",
"dev:workers": "tsx watch src/backend/workers/index.ts",
"build": "vite build",
"build:backend": "tsc -p tsconfig.backend.json",
"preview": "vite preview",
"lint": "tsc --noEmit",
"migrate": "tsx scripts/migrate.ts",
"seed": "tsx scripts/seed-sources.ts"
},
"dependencies": {
"@google/genai": "^1.42.0",
"@mozilla/readability": "^0.5.0",
"bullmq": "^5.1.0",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"express": "^4.18.2",
"ioredis": "^5.3.2",
"jsdom": "^24.0.0",
"node-cron": "^3.0.3",
"pg": "^8.11.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.0",
"rss-parser": "^3.13.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.21",
"@types/jsdom": "^21.1.6",
"@types/node": "^22.14.0",
"@types/pg": "^8.11.0",
"@vitejs/plugin-react": "^5.0.0",
"tsx": "^4.7.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}