-
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.89 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.89 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": "cooklet",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:netlify": "pnpx netlify dev --port 8888",
"preview": "vite preview",
"typecheck": "tsc -b",
"lint": "oxlint src",
"build": "tsc -b && vite build",
"build:netlify": "pnpm run lint && pnpm run build",
"test:e2e": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"test:proxy": "node scripts/test-proxy.js",
"test:unit": "vitest",
"test:unit:ui": "vitest --ui",
"test:unit:watch": "vitest --watch",
"test:unit:coverage": "vitest --coverage",
"test:all": "pnpm run test:unit && pnpm run test:e2e"
},
"dependencies": {
"@google-cloud/vision": "^5.2.0",
"@google/genai": "^1.5.1",
"@supabase/supabase-js": "^2.50.0",
"@types/node": "^22.15.30",
"lucide-react": "^0.518.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@playwright/test": "^1.53.1",
"@tailwindcss/cli": "^4.1.8",
"@tailwindcss/postcss": "^4.1.8",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react-swc": "^3.9.0",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.21",
"jsdom": "^26.1.0",
"netlify-cli": "^22.1.3",
"oxlint": "^1.1.0",
"playwright": "^1.53.1",
"postcss": "^8.5.4",
"tailwindcss": "^4.1.8",
"tailwindcss-safe-area": "^0.6.0",
"terser": "^5.42.0",
"typescript": "~5.8.3",
"@modelcontextprotocol/server-sequential-thinking": "^2025.7.1",
"@playwright/mcp": "^0.0.29",
"@supabase/mcp-server-supabase": "^0.4.5",
"vite": "^6.3.5",
"vitest": "^3.2.4"
}
}