-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.62 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
{
"name": "itamar-tech",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "biome format",
"ci": "biome ci",
"fix": "biome check --write . --diagnostic-level=error",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@google/genai": "^1.41.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "16.1.0",
"@tanstack/ai": "^0.0.2",
"@tanstack/ai-client": "^0.0.2",
"@tanstack/ai-react": "^0.0.2",
"@vercel/analytics": "^1.6.1",
"@vercel/kv": "^3.0.0",
"bright": "^1.0.0",
"chart.js": "^4.5.1",
"eslint-config-next": "16.1.0",
"groq-sdk": "^0.34.0",
"lodash": "^4.17.23",
"next": "16.1.0",
"next-mdx-remote": "^6.0.0",
"nodemailer": "^7.0.13",
"react": "19.2.3",
"react-chartjs-2": "^5.3.1",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.1",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "latest",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.13",
"@types/react": "19.2.7",
"babel-plugin-react-compiler": "^1.0.0",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9.39.2",
"jsdom": "^27.4.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"overrides": {
"@types/react": "19.2.7"
},
"trustedDependencies": [
"@biomejs/biome"
]
}