-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "aloud",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"guardrail": "tsx scripts/guardrail-lint.ts",
"test": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"@ai-sdk/openai": "^4.0.16",
"@capacitor/android": "^8.4.2",
"@capacitor/cli": "^8.4.2",
"@capacitor/core": "^8.4.2",
"@capacitor/ios": "^8.4.2",
"@mediapipe/tasks-vision": "^0.10.35",
"ai": "^7.0.31",
"html5-qrcode": "^2.3.8",
"next": "16.3.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@capacitor/assets": "^3.0.5",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"axe-core": "^4.12.1",
"eslint": "^9",
"eslint-config-next": "16.3.1",
"tailwindcss": "^4",
"tsx": "^4.23.1",
"typescript": "^5",
"vitest": "^4.1.10"
}
}