-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.12 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "nextjs-blog",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.1.2",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate:rss": "node scripts/rss.mjs",
"generate:knowledge-map": "tsx scripts/generateKnowledgeMap.ts",
"prebuild": "pnpm run generate:rss && pnpm run generate:knowledge-map",
"postbuild": "next-sitemap",
"generate-embeddings": "tsx scripts/generateEmbeddings.ts",
"analyze-vector-db": "tsx scripts/analyzeVectorDB.ts",
"prepare": "husky"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@floating-ui/react": "^0.27.19",
"@neondatabase/serverless": "^1.1.0",
"@types/node": "^18.11.9",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.0.9",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^1.3.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"dotenv": "^16.4.5",
"gray-matter": "^4.0.3",
"image-size": "^2.0.2",
"katex": "^0.16.22",
"lucide-react": "^1.18.0",
"marked": "^5.1.2",
"ml-kmeans": "^6.0.0",
"next": "16.2.9",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^16.1.0",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"swr": "^2.3.6",
"tsx": "^4.22.4",
"typescript": "^5.7.3",
"umap-js": "^1.4.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"uuid": "^14.0.0",
"voyageai": "^0.3.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/d3-scale": "^4.0.9",
"@types/d3-selection": "^3.0.11",
"@types/d3-zoom": "^3.0.8",
"@types/marked": "^5.0.2",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/unist": "^3.0.3",
"autoprefixer": "^10.4.22",
"chalk": "^5.6.2",
"eslint": "^9.18.0",
"eslint-config-next": "^16.2.9",
"husky": "^9.1.7",
"lint-staged": "^16.2.5",
"ora": "^9.0.0",
"postcss": "^8.5.15",
"prettier": "^3.6.2",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.18"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"js-yaml@<3.14.2": "3.14.2",
"js-yaml@>=4.0.0 <4.1.1": "4.1.1",
"glob@>=10.0.0 <10.5.0": "10.5.0",
"glob@>=11.0.0 <11.1.0": "11.1.0",
"qs": ">=6.15.2",
"mdast-util-to-hast": ">=13.2.1",
"protobufjs": ">=7.5.5",
"minimatch@<4": "3.1.4",
"minimatch@>=9.0.0 <9.0.7": "9.0.7",
"flatted": ">=3.4.2",
"picomatch@<3": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"ajv@<6.14.0": "6.14.0",
"svelte": ">=5.53.5",
"brace-expansion@<2": "1.1.13",
"brace-expansion@>=2.0.0 <2.0.3": "2.0.3",
"yaml": ">=2.8.3",
"postcss": ">=8.5.10",
"ws": "8.21.0"
}
}
}