2021-01-09 17:50:45 +08:00
|
|
|
{
|
2021-01-10 13:49:22 +08:00
|
|
|
"name": "tailwind-nextjs-starter-blog",
|
2021-01-09 17:50:45 +08:00
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2021-03-15 23:38:16 +08:00
|
|
|
"start": "next-remote-watch ./data",
|
2021-01-09 17:50:45 +08:00
|
|
|
"dev": "next dev",
|
2021-01-13 20:17:09 +08:00
|
|
|
"build": "next build && node ./scripts/generate-sitemap",
|
2021-01-09 17:50:45 +08:00
|
|
|
"serve": "next start",
|
2021-03-15 17:39:36 -05:00
|
|
|
"analyze": "env ANALYZE=true next build"
|
2021-01-09 17:50:45 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@mapbox/rehype-prism": "^0.5.0",
|
|
|
|
"@mdx-js/loader": "^1.6.20",
|
|
|
|
"@mdx-js/react": "^1.6.22",
|
2021-03-15 23:50:04 +08:00
|
|
|
"@next/mdx": "10.0.8",
|
2021-01-09 17:50:45 +08:00
|
|
|
"@tailwindcss/forms": "^0.2.1",
|
|
|
|
"@tailwindcss/typography": "^0.3.1",
|
|
|
|
"autoprefixer": "^10.1.0",
|
|
|
|
"gray-matter": "^4.0.2",
|
|
|
|
"image-size": "0.9.3",
|
2021-03-15 23:50:04 +08:00
|
|
|
"next": "10.0.8",
|
2021-01-09 17:50:45 +08:00
|
|
|
"next-mdx-remote": "^2.0.0",
|
|
|
|
"next-seo": "4.17.0",
|
|
|
|
"next-themes": "^0.0.10",
|
|
|
|
"postcss": "^8.2.1",
|
|
|
|
"preact": "^10.5.7",
|
|
|
|
"react": "16.13.1",
|
|
|
|
"react-dom": "16.13.1",
|
|
|
|
"reading-time": "1.2.1",
|
|
|
|
"rehype-katex": "^4.0.0",
|
|
|
|
"remark-autolink-headings": "6.0.1",
|
|
|
|
"remark-code-titles": "0.1.1",
|
|
|
|
"remark-footnotes": "^2.0.0",
|
|
|
|
"remark-math": "3.0.1",
|
|
|
|
"remark-slug": "6.0.0",
|
2021-02-25 00:04:02 +01:00
|
|
|
"tailwindcss": "^2.0.2"
|
2021-01-09 17:50:45 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@next/bundle-analyzer": "^10.0.0",
|
|
|
|
"@svgr/webpack": "^5.5.0",
|
2021-01-12 23:35:36 +08:00
|
|
|
"eslint": "^7.17.0",
|
|
|
|
"eslint-config-prettier": "^7.1.0",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
|
|
"eslint-plugin-react": "^7.22.0",
|
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
2021-01-09 17:50:45 +08:00
|
|
|
"file-loader": "^6.0.0",
|
|
|
|
"globby": "11.0.1",
|
2021-01-12 23:35:36 +08:00
|
|
|
"husky": "^4.3.7",
|
|
|
|
"lint-staged": "^10.5.3",
|
2021-01-09 17:50:45 +08:00
|
|
|
"next-compose-plugins": "^2.2.1",
|
2021-03-15 23:38:16 +08:00
|
|
|
"next-remote-watch": "^0.3.0",
|
2021-01-09 17:50:45 +08:00
|
|
|
"prettier": "2.2.1",
|
|
|
|
"rehype": "11.0.0",
|
|
|
|
"remark-frontmatter": "3.0.0",
|
|
|
|
"remark-parse": "9.0.0",
|
|
|
|
"remark-stringify": "9.0.0",
|
|
|
|
"unified": "9.2.0",
|
|
|
|
"unist-util-visit": "2.0.3"
|
2021-01-12 23:35:36 +08:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.+(js|jsx|ts|tsx)": [
|
|
|
|
"eslint --fix"
|
|
|
|
],
|
|
|
|
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
|
|
|
|
"prettier --write"
|
|
|
|
]
|
2021-01-09 17:50:45 +08:00
|
|
|
}
|
|
|
|
}
|