-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.68 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.68 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
{
"name": "ai-price-hub",
"version": "1.0.0",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">=24.0.0 <25"
},
"scripts": {
"dev": "node_modules/node/bin/node node_modules/next/dist/bin/next dev --webpack",
"build": "node_modules/node/bin/node node_modules/next/dist/bin/next build --webpack",
"build:cloudflare": "node scripts/build-cloudflare.mjs",
"preview:cloudflare": "opennextjs-cloudflare preview",
"deploy:production": "node scripts/deploy-production.mjs",
"deploy:cloudflare": "node scripts/check-cloudflare-env.mjs && node scripts/sanitize-opennext-env.mjs && opennextjs-cloudflare deploy -- --keep-vars",
"smoke:cloudflare": "node scripts/smoke-cloudflare.mjs",
"check:cloudflare-env": "node scripts/check-cloudflare-env.mjs",
"check:collector-runtime-sync": "node scripts/check-collector-runtime-guard.mjs",
"collector-runtime:sync-source": "node scripts/sync-collector-runtime-source.mjs",
"collector-runtime:build": "node scripts/build-collector-runtime-artifact.mjs",
"collector-runtime:deploy-release": "node scripts/deploy-collector-runtime-artifact.mjs",
"check:performance": "node scripts/check-performance-guards.mjs",
"start": "node_modules/node/bin/node node_modules/next/dist/bin/next start",
"lint": "node_modules/node/bin/node node_modules/eslint/bin/eslint.js",
"collect:prices": "node scripts/collect-prices.mjs",
"refresh:snapshots": "node scripts/refresh-public-api-snapshots.mjs",
"collect:performance": "node scripts/analyze-collector-performance.mjs",
"analyze:workers-tail": "node scripts/analyze-workers-tail.mjs",
"collect:official": "node scripts/collect-official-prices.mjs",
"collect:api-models": "node scripts/collect-api-models.mjs",
"collect:api-transit": "node scripts/collect-api-transit.mjs",
"import:api-transit:form": "node scripts/import-api-transit-form-responses.mjs",
"import:api-transit:freedomstore": "node scripts/import-freedomstore-api-transit.mjs",
"import:api-transit:sub2api": "node scripts/import-sub2api-api-transit.mjs",
"probe:api-transit": "node scripts/probe-api-transit.mjs",
"test:api-transit": "node scripts/run-ts-test.mjs scripts/test-api-transit-sorting.ts && node scripts/test-api-transit.mjs && node scripts/test-api-transit-probe.mjs",
"collect:worker": "node scripts/collect-worker.mjs",
"import:api-models": "node scripts/import-api-models.mjs",
"check:p2": "node scripts/p2-closeout-check.mjs",
"test:api-models": "node scripts/test-api-models.mjs",
"test:official-parser": "node scripts/test-official-prices-parser.mjs",
"collect:browser": "node scripts/collect-browser.mjs",
"reparse:submissions": "node scripts/reparse-submissions-local.mjs",
"migrate:remote:freshness": "node scripts/apply-remote-migration.mjs",
"setup:ga4": "node scripts/setup-ga4.mjs",
"audit:catalog": "node scripts/audit-catalog.mjs",
"test:catalog": "node scripts/test-catalog.mjs",
"filter:ldxp-sqlite": "node scripts/filter-ldxp-sqlite-candidates.mjs"
},
"dependencies": {
"@supabase/supabase-js": "^2.105.3",
"html-to-image": "^1.11.13",
"lucide-react": "^1.14.0",
"next": "16.2.9",
"next-mdx-remote": "^6.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"remark-gfm": "^4.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@opennextjs/cloudflare": "1.19.11",
"@tailwindcss/postcss": "^4",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"node": "^24.14.0",
"playwright-core": "^1.59.1",
"tailwindcss": "^4",
"typescript": "^5",
"wrangler": "4.99.0"
}
}