tailwind-nextjs-blog/package.json
Ivan Li 90a6a3d9d9
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 17s
chore: update next.js and remove image optimize.
2023-07-09 08:43:43 +00:00

86 lines
2.5 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",
"export": "next export ",
"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.2",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@next/bundle-analyzer": "12.0.9",
"@tailwindcss/forms": "^0.4.1",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"esbuild": "^0.13.15",
"github-slugger": "^1.5.0",
"gray-matter": "^4.0.3",
"image-size": "1.0.0",
"js-yaml": "^4.1.0",
"mdx-bundler": "^8.1.0",
"next": "13.4.8",
"next-themes": "^0.0.14",
"postcss": "^8.4.25",
"preact": "^10.15.1",
"react": "18.2.0",
"react-commento": "^1.0.0",
"react-cusdis": "^2.1.3",
"react-dom": "18.2.0",
"reading-time": "1.3.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-citation": "^0.2.5",
"rehype-katex": "^6.0.3",
"rehype-preset-minify": "6.0.0",
"rehype-prism-plus": "^1.6.1",
"rehype-slug": "^5.1.0",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.28.3",
"smoothscroll-polyfill": "^0.4.4",
"tailwindcss": "^3.3.2",
"unist-util-visit": "^5.0.0",
"vfile": "^5.3.7"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@types/react": "^17.0.62",
"@types/tailwindcss": "^2.2.4",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cross-env": "^7.0.3",
"dedent": "^0.7.0",
"eslint": "^7.32.0",
"eslint-config-next": "13.4.9",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^3.4.1",
"file-loader": "^6.2.0",
"globby": "11.0.3",
"husky": "^6.0.0",
"inquirer": "^8.2.5",
"lint-staged": "^11.2.6",
"next-remote-watch": "^1.0.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"socket.io": "^4.7.1",
"socket.io-client": "^4.7.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
}
}