-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.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
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
{
"name": "battery-guides",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "node scripts/generate-search-index.mjs",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "eslint",
"check:internal-links": "node scripts/validate-article-internal-links.mjs",
"check:word-counts": "node scripts/count-mdx-words.mjs",
"qa": "npm run build && npm run check:internal-links && npm run check:word-counts",
"lighthouse": "node scripts/lighthouse-hint.mjs"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.2.0",
"@supabase/supabase-js": "^2.100.0",
"@tailwindcss/typography": "^0.5.19",
"@tiptap/core": "^2.27.2",
"@tiptap/extension-code-block-lowlight": "^2.11.5",
"@tiptap/extension-color": "^2.11.5",
"@tiptap/extension-highlight": "^2.11.5",
"@tiptap/extension-image": "^2.11.5",
"@tiptap/extension-link": "^2.11.5",
"@tiptap/extension-placeholder": "^2.11.5",
"@tiptap/extension-table": "^2.11.5",
"@tiptap/extension-table-cell": "^2.11.5",
"@tiptap/extension-table-header": "^2.11.5",
"@tiptap/extension-table-row": "^2.11.5",
"@tiptap/extension-task-item": "^2.11.5",
"@tiptap/extension-task-list": "^2.11.5",
"@tiptap/extension-text-align": "^2.11.5",
"@tiptap/extension-text-style": "^2.11.5",
"@tiptap/extension-underline": "^2.11.5",
"@tiptap/extension-youtube": "^2.11.5",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.11.5",
"@vercel/analytics": "^2.0.1",
"framer-motion": "^12.38.0",
"fuse.js": "^7.1.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"lowlight": "^3.3.0",
"lucide-react": "^0.577.0",
"next": "16.2.0",
"next-mdx-remote": "^6.0.0",
"next-seo": "^7.2.0",
"next-sitemap": "^4.2.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}