-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.07 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.07 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
67
68
69
70
{
"name": "deennotes-ai",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/mobile"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"mobile": "npm run start -w mobile",
"mobile:dev": "npm run start:dev -w mobile",
"mobile:clear": "npm exec --workspace mobile -- expo start --clear",
"mobile:icons": "node scripts/export-mobile-brand-icons.cjs",
"watchman:reset": "watchman watch-del \"$PWD\" 2>/dev/null; watchman watch-project \"$PWD\"",
"mobile:typecheck": "npm run typecheck -w mobile",
"mobile:doctor": "npm exec --workspace mobile -- expo-doctor",
"mobile:eas": "cd apps/mobile && eas build",
"netlify": "netlify",
"ntl": "netlify",
"netlify:status": "netlify status",
"netlify:sites": "netlify sites:list",
"netlify:deploy": "netlify deploy",
"netlify:deploy:prod": "netlify deploy --prod"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@quranjs/api": "^3.2.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.47.10",
"@tanstack/react-query": "^5.100.9",
"clsx": "^2.1.1",
"expo-dev-client": "~6.0.21",
"framer-motion": "^11.18.2",
"groq-sdk": "^0.8.0",
"html-to-image": "^1.11.13",
"next": "^15.1.3",
"openai": "^4.73.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native-purchases": "^10.1.0",
"react-native-purchases-ui": "^10.1.0",
"server-only": "^0.0.1",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^5.15.10",
"@types/node": "^22.10.5",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.3",
"expo-router": "~6.0.23",
"netlify-cli": "^26.0.1",
"postcss": "^8.4.49",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vitest": "^2.1.9"
},
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0"
}
}