-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.04 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "openfindability",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"doctor": "tsx scripts/doctor.ts",
"seed:demo": "tsx scripts/seed-demo.ts",
"sync": "tsx scripts/sync.ts",
"sync:gsc": "tsx scripts/sync.ts gsc",
"sync:umami": "tsx scripts/sync.ts umami",
"sync:play-console": "tsx scripts/sync.ts play_console",
"sync:aso": "tsx scripts/sync.ts aso",
"sync:revenuecat": "tsx scripts/sync.ts revenuecat",
"sync:admob": "tsx scripts/sync.ts admob",
"sync:admob:backfill": "tsx scripts/sync.ts admob 1500",
"admob:auth": "tsx scripts/admob-auth.ts",
"admob:apps": "tsx scripts/admob-list-apps.ts",
"sync:adsense": "tsx scripts/sync.ts adsense",
"sync:adsense:backfill": "tsx scripts/sync.ts adsense 1500",
"adsense:auth": "tsx scripts/adsense-auth.ts",
"adsense:accounts": "tsx scripts/adsense-accounts.ts",
"sync:play-vitals": "tsx scripts/sync.ts play_vitals",
"sync:play-stats": "tsx scripts/sync.ts play_stats",
"sync:play-stats:backfill": "tsx scripts/sync.ts play_stats 730",
"sync:asc-analytics": "tsx scripts/sync.ts asc_analytics",
"sync:asc-analytics:backfill": "tsx scripts/sync.ts asc_analytics 365",
"discover:apps": "tsx scripts/discover-apps.ts",
"asc:apps": "tsx scripts/asc-apps.ts",
"aso:pull-copy": "tsx scripts/asc-metadata.ts pull",
"aso:push-copy": "tsx scripts/asc-metadata.ts push",
"asc:experiments": "tsx scripts/asc-experiments.ts",
"play:pull-copy": "tsx scripts/play-push-copy.ts pull",
"play:push-copy": "tsx scripts/play-push-copy.ts push",
"gsc:sites": "tsx scripts/gsc-sites.ts",
"audit:index": "tsx scripts/gsc-index-audit.ts",
"project:add": "tsx scripts/add-project.ts",
"project:update": "tsx scripts/update-project.ts",
"research:aso": "tsx scripts/aso-research.ts",
"report": "tsx scripts/report.ts",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"db:migrate-json": "tsx scripts/migrate-json-to-sqlite.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.10",
"better-sqlite3": "^12.11.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"googleapis": "^166.0.0",
"lucide-react": "^1.21.0",
"next": "latest",
"react": "latest",
"react-dom": "latest",
"recharts": "^2.15.4",
"tailwind-merge": "^3.5.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"drizzle-kit": "^0.31.10",
"postcss": "8.5.14",
"tailwindcss": "^4.2.2",
"tsx": "^4.20.0",
"typescript": "^5.0.0"
}
}