-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.25 KB
/
package.json
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "daniel-ai",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"lint": "next lint",
"test": "jest",
"test:ci": "jest --config jest.config.ci.ts --runInBand",
"test:watch": "jest --watch",
"test:e2e": "pnpm playwright test --ui",
"test:e2e:ci": "CI=true pnpm playwright test --config=playwright.config.ts --reporter=dot --output=playwright-report",
"e2e:build": "NEXT_PUBLIC_E2E=true next build",
"e2e:install": "pnpm exec playwright install --with-deps",
"check-types": "tsc --project tsconfig.json --pretty --noEmit",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.49",
"@langchain/community": "^0.2.33",
"@langchain/core": "^0.2.32",
"@langchain/openai": "^0.2.10",
"@next/bundle-analyzer": "^14.2.10",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.56.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@upstash/rag-chat": "^1.5.0",
"@upstash/ratelimit": "^2.0.2",
"@upstash/redis": "^1.34.0",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"ai": "^3.3.35",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"embla-carousel-react": "^8.2.1",
"langchain": "^0.2.19",
"lucide-react": "^0.428.0",
"next": "14.2.5",
"next-themes": "^0.3.0",
"openai": "^4.59.0",
"react": "^18",
"react-dom": "^18",
"react-error-boundary": "^4.0.13",
"react-icons": "^5.3.0",
"react-markdown": "^9.0.1",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@playwright/test": "^1.47.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-testing-library": "^6.3.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fixed-jsdom": "^0.0.2",
"jest-junit": "^16.0.0",
"jest-silent-reporter": "^0.6.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.45",
"tailwindcss": "^3.4.11",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]+sha512.67f5879916a9293e5cf059c23853d571beaf4f753c707f40cb22bed5fb1578c6aad3b6c4107ccb3ba0b35be003eb621a16471ac836c87beb53f9d54bb4612724"
}