-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.37 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.37 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
{
"name": "new-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"generate-llms": "npm --prefix mdx-to-md-converter ci && npm --prefix mdx-to-md-converter run convert",
"generate-llms:pre-commit": "npm --prefix mdx-to-md-converter run pre-commit && git add public/llms public/all-links-llms.txt",
"build": "npm run sitemap && npm run fetch:models && next build",
"postbuild": "sh -c \"if [ -d public/llms ]; then mkdir -p out/llms && cp -R public/llms/* out/llms/; fi; if [ -f public/all-links-llms.txt ]; then cp public/all-links-llms.txt out/all-links-llms.txt; fi\"",
"start": "next start",
"lint": "next lint",
"sitemap": "node sitemap/generate.js",
"fetch:models": "node src/scripts/fetch-liara-ai-models.js",
"prepare": "npx husky install || echo husky skipped"
},
"dependencies": {
"@liara/platformicons": "^3.13.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.3",
"clsx": "^2.1.1",
"husky": "^9.1.7",
"lodash.debounce": "^4.0.8",
"meilisearch": "^0.41.0",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"react-highlight": "^0.15.0",
"react-icons": "^5.2.1",
"ua-parser-js": "^1.0.38",
"yet-another-react-lightbox": "^3.23.2"
},
"devDependencies": {
"postcss": "^8",
"tailwindcss": "^3.4.1"
}
}