-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 828 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 828 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
33
34
35
{
"name": "newsletter-agent",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"lint": "eslint",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@langchain/core": "1.2.2",
"@langchain/google-genai": "^2.2.0",
"@langchain/langgraph": "^1.1.4",
"cheerio": "^1.1.2",
"next": "^16.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rss-parser": "^3.13.0",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.19.0",
"eslint-config-next": "^16.0.0",
"jsdom": "^26.0.0",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}