-
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.4 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.4 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": "parle---french-practice",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:worker": "wrangler dev --port 8787",
"dev:full": "npx --yes concurrently -k \"npm run dev\" \"npm run dev:worker\"",
"build": "vite build",
"preview": "vite preview",
"deploy": "npm run build && wrangler deploy",
"types": "wrangler types --include-runtime false",
"test": "vitest run",
"test:e2e": "PLAYWRIGHT_BROWSERS_PATH=./.playwright-browsers playwright test",
"test:e2e:install": "PLAYWRIGHT_BROWSERS_PATH=./.playwright-browsers playwright install"
},
"dependencies": {
"@google/genai": "^1.37.0",
"@langchain/core": "^1.1.24",
"@langchain/google-genai": "^2.1.18",
"@langchain/openai": "^1.2.7",
"fflate": "^0.8.3",
"langchain": "^1.2.24",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"vaul": "^1.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260911.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.1.2",
"fake-indexeddb": "^6.2.5",
"jsdom": "^28.1.0",
"postcss": "^8.5.6",
"typescript": "~5.8.2",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wrangler": "^4.131.1"
}
}