forked from miantiao-me/hacker-podcast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.27 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": "hacker-news",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "simple-git-hooks",
"predev:workflow": "npm run -s cf-typegen",
"dev:workflow": "wrangler dev workflow/dev.ts",
"opennext": "opennextjs-cloudflare",
"preview": "npm run -s opennext && wrangler dev --env nextjs",
"deploy": "npm run -s opennext && WRANGLER_BUILD_PLATFORM=node wrangler deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^0.1.8",
"@echristian/edge-tts": "^0.0.14",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@shadcn/ui": "^0.0.4",
"ai": "^4.1.25",
"cheerio": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.475.0",
"next": "^15.1.6",
"player.style": "^0.1.3",
"podcast": "^2.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.3",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@ast-grep/napi-darwin-arm64": "^0.34.3",
"@ast-grep/napi-linux-x64-gnu": "^0.34.3",
"@cloudflare/workers-types": "^4.20250204.0",
"@eslint-react/eslint-plugin": "^1.26.2",
"@opennextjs/cloudflare": "0.4.7",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20.17.17",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"eslint": "^9.19.0",
"eslint-config-next": "^15.1.6",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"wrangler": "^3.107.3"
},
"pnpm": {
"patchedDependencies": {
"@opennextjs/cloudflare": "patches/@opennextjs__cloudflare.patch"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}