Files
lixiyu-net/package.json

114 lines
3.3 KiB
JSON
Raw Normal View History

2023-12-25 17:21:39 +08:00
{
"name": "nextjs-lexical-blog",
2024-04-17 12:57:32 +08:00
"version": "0.0.0",
2023-12-25 17:21:39 +08:00
"private": true,
"author": {
2024-08-14 09:20:57 +08:00
"name": "Ethan Zhang",
2023-12-25 17:21:39 +08:00
"email": "terminals@outlook.com",
2024-08-14 09:20:57 +08:00
"url": "https://dreams.plus/"
2023-12-25 17:21:39 +08:00
},
"bugs": {
"email": "terminals@outlook.com",
"url": "https://github.com/PrinOrange/nextjs-lexical-blog/issues"
},
"scripts": {
"dev": "next dev",
"dev:turbo": "npx turbo dev",
"build:turbo": "npx turbo build",
2023-12-25 17:21:39 +08:00
"build": "next build",
"start": "next start",
"format": "npx biome format --write . && npx autocorrect --fix",
"lint:fix": "npx biome check --fix",
2024-08-12 13:53:28 +08:00
"newpost": "bun ./scripts/newpost.ts",
"archive": "bun ./scripts/archive.ts"
2023-12-25 17:21:39 +08:00
},
"dependencies": {
2024-04-03 22:08:27 +08:00
"@giscus/react": "^3.0.0",
2024-08-14 20:40:40 +08:00
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.5",
"@node-rs/jieba": "^1.10.3",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"autoprefixer": "^10.4.20",
"axios": "^1.7.4",
2023-12-25 17:21:39 +08:00
"class-variance-authority": "^0.7.0",
2024-08-14 20:40:40 +08:00
"clsx": "^2.1.1",
2024-04-03 22:08:27 +08:00
"cmdk": "^1.0.0",
2023-12-25 17:21:39 +08:00
"colors": "^1.4.0",
2024-08-14 20:40:40 +08:00
"highlight.js": "^11.10.0",
"jsdom": "^24.1.1",
"katex": "^0.16.11",
2023-12-25 17:21:39 +08:00
"lodash": "^4.17.21",
2024-08-14 20:40:40 +08:00
"lucide-react": "^0.427.0",
"minisearch": "^7.1.0",
"nanoid": "^5.0.7",
"next": "^14.2.5",
2023-12-25 17:21:39 +08:00
"next-mdx-remote": "^4.4.1",
2024-08-14 20:40:40 +08:00
"next-seo": "^6.5.0",
2023-12-25 17:21:39 +08:00
"next-share": "^0.27.0",
2024-04-03 22:08:27 +08:00
"next-themes": "^0.3.0",
2024-08-14 20:40:40 +08:00
"object-sizeof": "^2.6.5",
"postcss": "^8.4.41",
2024-04-03 22:08:27 +08:00
"prism": "^4.1.2",
2023-12-25 17:21:39 +08:00
"prismjs": "^1.29.0",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
2024-08-14 20:40:40 +08:00
"react-icons": "^5.3.0",
2024-01-06 11:47:18 +08:00
"react-query": "^3.39.3",
2024-01-04 12:30:24 +08:00
"react-swipeable": "^7.0.1",
2024-04-03 22:08:27 +08:00
"react-syntax-highlighter": "^15.5.0",
2023-12-25 17:21:39 +08:00
"rehype-autolink-headings": "^7.1.0",
2024-04-03 22:08:27 +08:00
"rehype-highlight": "^7.0.0",
2024-04-17 12:56:08 +08:00
"rehype-katex": "^7.0.0",
"rehype-mathjax": "^6.0.0",
2023-12-25 17:21:39 +08:00
"rehype-preset-minify": "^7.0.0",
"rehype-raw": "^7.0.0",
2024-04-17 12:56:08 +08:00
"rehype-slug": "^6.0.0",
2023-12-25 17:21:39 +08:00
"remark-external-links": "^9.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-prism": "^1.3.6",
2024-08-14 20:40:40 +08:00
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.10",
2023-12-25 17:21:39 +08:00
"tailwindcss-animate": "^1.0.7",
2024-08-12 13:53:28 +08:00
"title-case": "^4.3.1",
2024-01-04 12:30:24 +08:00
"typescript": "5.2.2",
2024-04-03 22:08:27 +08:00
"url-join": "^5.0.0",
2024-08-14 20:40:40 +08:00
"zustand": "^4.5.4"
2023-12-25 17:21:39 +08:00
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
2024-08-14 20:40:40 +08:00
"@tailwindcss/typography": "^0.5.14",
2024-04-03 22:08:27 +08:00
"@types/archiver": "^6.0.2",
"@types/inquirer": "^9.0.7",
2024-08-14 20:40:40 +08:00
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.7",
"@types/mdx": "^2.0.13",
"@types/node": "^20.14.15",
"@types/react": "^18.3.3",
2023-12-25 17:21:39 +08:00
"@types/react-copy-to-clipboard": "^5.0.7",
2024-08-14 20:40:40 +08:00
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
2023-12-25 17:21:39 +08:00
"@types/remark-prism": "^1.3.7",
2024-08-14 20:40:40 +08:00
"@types/tar": "^6.1.13",
2024-04-03 22:08:27 +08:00
"archiver": "^7.0.1",
"autocorrect-node": "^2.11.1",
2024-08-14 20:40:40 +08:00
"bun": "^1.1.24",
2023-12-25 17:21:39 +08:00
"feed": "^4.2.2",
2024-08-14 20:40:40 +08:00
"inquirer": "^9.3.6",
"tar": "^7.4.3",
2024-08-14 09:01:14 +08:00
"turbo": "^2.0.12",
2023-12-25 17:21:39 +08:00
"webpack-obfuscator": "^3.5.1"
},
"packageManager": "pnpm@9.7.0"
}