-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.48 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
{
"name": "vision",
"version": "1.0.0",
"description": "Vision AI Secretary application foundation.",
"private": true,
"packageManager": "pnpm@11.9.0",
"scripts": {
"dev": "vite",
"build": "vite build && tsx scripts/validate-production-crypto-boundary.ts",
"preview": "vite preview",
"typecheck": "tsc --noEmit && tsc --noEmit -p tests/tsconfig.json",
"test:unit": "vitest run --project unit",
"test:worker": "vitest run --project worker",
"test:e2e": "playwright test",
"docs:check": "tsx scripts/validate-doc-coverage.ts",
"check": "pnpm typecheck && pnpm test:unit && pnpm test:worker && pnpm docs:check && pnpm build",
"ci": "pnpm check && pnpm test:e2e"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@neondatabase/serverless": "^1.1.0",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.31",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.46.0",
"@cloudflare/vitest-pool-workers": "^0.18.7",
"@cloudflare/workers-types": "^5.20260721.1",
"@electric-sql/pglite": "^0.5.4",
"@playwright/test": "^1.61.1",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"drizzle-kit": "^0.31.10",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"vite": "^8.1.5",
"vitest": "4.1.0",
"wrangler": "^4.113.0"
}
}