-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 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
{
"name": "data-insights-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"export": "next build",
"deploy": "npm run build && npx tsx scripts/test-all-costs.ts && node scripts/smoke-test-viz-posts.mjs && node scripts/qa-homepage-and-fullscreen.mjs",
"deploy:hosting": "node scripts/firebase-deploy-hosting.mjs",
"deploy:firebase": "npm run deploy && node scripts/firebase-deploy-hosting.mjs && node scripts/smoke-test-viz-posts.mjs --live && node scripts/qa-homepage-and-fullscreen.mjs --live",
"smoke": "node scripts/smoke-test-viz-posts.mjs",
"smoke:live": "node scripts/smoke-test-viz-posts.mjs --live",
"theme-balance": "npx tsx scripts/theme-balance.ts",
"jobs:claim": "npx tsx scripts/claim-next-topics.mjs",
"jobs:update": "npx tsx scripts/update-agent-job.mjs",
"worktrees:bootstrap": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/bootstrap-worktrees.ps1",
"workers:up": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/worker-containers.ps1 -Action start",
"workers:stop": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/worker-containers.ps1 -Action stop",
"workers:status": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/worker-containers.ps1 -Action status",
"workers:sync": "node scripts/sync-worker-clones.mjs",
"automation:start": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/start-blog-automation-in-app.ps1",
"automation:stop": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/stop-blog-automation.ps1",
"automation:resume": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/resume-blog-automation.ps1",
"automation:register-watchdog": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/register-blog-production-watchdog.ps1",
"automation:orchestrator": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/run-blog-orchestrator.ps1",
"stream": "node scripts/production-stream-server.mjs",
"blog:local": "node scripts/local-blog-server.mjs",
"merge:ready": "node scripts/merge-ready-job.mjs",
"merge:self-test": "node scripts/merge-ready-job.mjs --self-test",
"branches:prune": "node scripts/prune-post-branches.mjs --dry-run",
"branches:prune:apply": "node scripts/prune-post-branches.mjs --apply",
"qa:gdp": "npm run build && node scripts/qa-gdp-post.mjs",
"qa:ai-data-centers": "npm run build && node scripts/qa-ai-data-centers-post.mjs",
"postinstall": "npx playwright install chromium || true"
},
"dependencies": {
"date-fns": "^4.4.0",
"firebase": "^12.15.0",
"next": "16.2.10",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.9.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.10",
"tailwindcss": "^4",
"typescript": "^5",
"playwright": "^1.52.0"
}
}