-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.8 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
{
"name": "chatbot",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"server": "node --env-file=.env.local server/index.mjs",
"dev:all": "concurrently -k -n proxy,web -c blue,green \"pnpm:server\" \"pnpm:dev\"",
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\" \"server/**/*.mjs\" \"e2e/**/*.ts\" \"playwright.config.ts\"",
"preview": "vite preview"
},
"dependencies": {
"@google/genai": "^1.13.0",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-virtual": "^3.14.9",
"@types/node": "^24.2.0",
"@upstash/redis": "^1.38.2",
"lucide-react": "^1.31.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"tailwindcss": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@playwright/test": "^1.62.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.4",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"concurrently": "^10.0.4",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jsdom": "^30.0.1",
"prettier": "^3.6.2",
"typescript": "~6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^7.1.0",
"vitest": "^3.2.7"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}