-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.93 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.93 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "reddit-multi-poster",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"demo:video": "NEXT_PUBLIC_QUEUE_DEMO_MODE=1 npx playwright test -c playwright.demo.config.ts tests/demo/product-hunt-demo.spec.ts --project=chromium --workers=1 --headed",
"demo:video:settings": "NEXT_PUBLIC_QUEUE_DEMO_MODE=1 npx playwright test -c playwright.demo.config.ts tests/demo/settings-management-demo.spec.ts --project=chromium --workers=1 --headed",
"demo:export": "node scripts/export-demo-video.cjs",
"demo:export:settings": "node scripts/export-demo-video.cjs --variant=settings",
"demo:tts:settings": "node scripts/generate-tts-openai.cjs --input=docs/demo/settings-demo-voiceover.md --output=demo-audio/settings-voiceover.m4a",
"demo:export:settings:final": "node scripts/export-demo-video.cjs --variant=settings --pad=1080x1920 --audio=demo-audio/settings-voiceover.m4a",
"test:contracts": "playwright test tests/contracts --project=chromium",
"test:e2e:flow": "playwright test tests/flows --project=chromium --grep \"@flow-core|@flow-edge\"",
"test:e2e:regression": "playwright test --project=chromium --grep \"@flow-regression\"",
"test:e2e:mobile": "playwright test --project=mobile-chrome --project=mobile-safari --grep \"@flow-regression\"",
"test:canary": "playwright test tests/canary --project=chromium --grep \"@canary-live\"",
"test:ci": "npm run lint && npm run typecheck && npm run test:contracts && npm run test:e2e:flow",
"db:start": "npx supabase start",
"db:stop": "npx supabase stop",
"db:status": "npx supabase status",
"db:migrate": "npx supabase migration up",
"db:migrate:new": "npx supabase migration new",
"db:reset": "npx supabase db reset",
"db:push": "npx supabase db push",
"db:types": "npx supabase gen types typescript --local > types/database.ts",
"db:studio": "open http://127.0.0.1:54323",
"fetch-reviews": "bash scripts/fetch-coderabbit-reviews.sh"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.38.0",
"@supabase/supabase-js": "^2.90.1",
"@types/formidable": "^3.4.5",
"autoprefixer": "^10.4.21",
"axios": "^1.7.7",
"better-sqlite3": "^11.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookie": "^0.6.0",
"dodopayments-checkout": "^1.8.0",
"formidable": "^3.5.4",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.468.0",
"next": "14.2.35",
"phosphor-react": "^1.4.1",
"postcss": "^8.5.6",
"posthog-js": "^1.342.1",
"posthog-node": "^5.24.11",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "^14.2.3",
"recharts": "^3.7.0",
"standardwebhooks": "^1.0.0",
"swr": "^2.4.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@next/bundle-analyzer": "^16.1.6",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/typography": "^0.5.19",
"@types/better-sqlite3": "^7.6.12",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"tailwindcss": "^3.4.17",
"typescript": "5.5.3"
}
}