tailwind-nextjs-blog/package.json
Ivan Li ca5eb7cd5e
Some checks failed
continuous-integration/drone/push Build is failing
feat: 添加并改用 commento 评论。
2022-10-07 22:04:38 +08:00

82 lines
2.4 KiB
JSON

{
"name": "tailwind-nextjs-blog",
"version": "1.5.6",
"private": true,
"scripts": {
"start": "cross-env SOCKET=true node ./scripts/next-remote-watch.js ./data",
"dev": "next dev",
"build": "next build && node ./scripts/generate-sitemap",
"serve": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --fix --dir pages --dir components --dir lib --dir layouts --dir scripts",
"prepare": "husky install"
},
"dependencies": {
"@fontsource/inter": "4.5.13",
"@mailchimp/mailchimp_marketing": "^3.0.78",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"autoprefixer": "^10.4.12",
"esbuild": "^0.14.0",
"github-slugger": "^1.4.0",
"gray-matter": "^4.0.3",
"image-size": "1.0.2",
"mdx-bundler": "^9.0.1",
"next": "12.3.1",
"next-themes": "^0.2.1",
"postcss": "^8.4.17",
"preact": "^10.11.1",
"react": "18.2.0",
"react-commento": "^1.0.0",
"react-cusdis": "^2.1.3",
"react-dom": "18.2.0",
"reading-time": "1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-citation": "^0.4.0",
"rehype-katex": "^6.0.2",
"rehype-preset-minify": "6.0.0",
"rehype-prism-plus": "^1.5.0",
"rehype-slug": "^5.0.1",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.31.1",
"smoothscroll-polyfill": "^0.4.4",
"tailwindcss": "^3.1.8",
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "12.3.1",
"@svgr/webpack": "^6.4.0",
"@types/react": "^18.0.21",
"@types/tailwindcss": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"cross-env": "^7.0.3",
"dedent": "^0.7.0",
"eslint": "^8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"globby": "13.1.2",
"husky": "^8.0.1",
"inquirer": "^9.1.3",
"lint-staged": "^13.0.3",
"next-remote-watch": "^2.0.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.2",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
}
}