-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.22 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
63
64
65
66
{
"name": "lessonarcade",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:e2e": "next dev --port 3100",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings 0",
"test": "pnpm db:push:dev && vitest run --config vitest.config.mts",
"test:e2e": "playwright test",
"test:e2e:report": "playwright show-report",
"test:e2e:ci": "playwright test --reporter=line --project=chromium",
"test:smoke": "playwright test e2e/smoke.spec.ts --reporter=line --project=chromium",
"typecheck": "tsc --noEmit",
"presskit:check": "node scripts/presskit/check.mjs",
"audit:english": "tsx scripts/audit-english.ts",
"db:seed:demo": "tsx scripts/db/seed-demo-lessons.ts",
"db:push:dev": "DATABASE_URL=\"file:./dev.db\" prisma db push --skip-generate",
"hosted:url": "bash scripts/cloud-run/hosted-url.sh",
"devpost:fields": "bash scripts/devpost/print-fields.sh",
"ci:check": "pnpm lint && pnpm typecheck && pnpm build && pnpm test && pnpm test:smoke",
"prisma:generate": "prisma generate",
"postinstall": "pnpm prisma:generate"
},
"dependencies": {
"@elevenlabs/react": "^0.12.3",
"@google-cloud/vertexai": "^1.10.0",
"@google/genai": "^1.33.0",
"@prisma/client": "^6.19.1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.556.0",
"motion": "^12.23.25",
"next": "16.0.7",
"react": "19.2.0",
"react-dom": "19.2.0",
"tailwind-merge": "^3.4.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/ui": "^4.0.16",
"eslint": "^9",
"eslint-config-next": "16.0.7",
"jsdom": "^27.3.0",
"playwright": "^1.57.0",
"prisma": "^6.19.1",
"server-only": "^0.0.1",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
}
}