-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 KB
/
package.json
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
{
"private": true,
"type": "commonjs",
"scripts": {
"dev": "next -p 1024",
"build": "pnpm seo && next build",
"postbuild": "pnpm sitemap && pnpm run rss",
"start": "next start -p 1024",
"typecheck": "tsc",
"sitemap": "ts-node ./scripts/sitemap.ts",
"rss": "ts-node ./scripts/rss.ts",
"algolia": "ts-node ./scripts/algolia.ts",
"seo": "pnpm rss && pnpm sitemap",
"lint:md": "markdownlint ./_posts/*.md",
"lint:md:fix": "markdownlint ./_posts/*.md --fix"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@next/env": "^13.5.6",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-slot": "^1.0.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@vercel/analytics": "^0.1.11",
"@vercel/speed-insights": "^1.0.10",
"algoliasearch": "^4.22.0",
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"gray-matter": "^4.0.3",
"instantsearch.css": "^8.1.0",
"lucide-react": "^0.298.0",
"mixpanel-browser": "^2.49.0",
"next": "^14.0.4",
"next-themes": "^0.2.1",
"next-view-transitions": "^0.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-instantsearch-hooks-web": "^6.47.3",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"rss": "^1.2.2",
"swr": "^2.2.4",
"tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/node": "^18.19.3",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"markdownlint-cli": "^0.33.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"ts-node": "^10.9.2"
}
}