jonbio/package.json

70 lines
1.9 KiB
JSON
Raw Normal View History

2021-01-09 17:50:45 +08:00
{
2021-01-10 13:49:22 +08:00
"name": "tailwind-nextjs-starter-blog",
2021-05-23 13:03:28 +08:00
"version": "0.3.3",
2021-01-09 17:50:45 +08:00
"private": true,
"scripts": {
"start": "cross-env TAILWIND_MODE=watch next-remote-watch ./data",
2021-05-23 11:49:22 +08:00
"dev": "cross-env TAILWIND_MODE=watch 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-05-23 11:49:22 +08:00
"analyze": "cross-env ANALYZE=true next build",
"prepare": "husky install"
2021-01-09 17:50:45 +08:00
},
"dependencies": {
"@mapbox/rehype-prism": "^0.6.0",
"@tailwindcss/forms": "^0.3.2",
"@tailwindcss/typography": "^0.4.0",
"autoprefixer": "^10.2.5",
2021-01-09 17:50:45 +08:00
"gray-matter": "^4.0.2",
"image-size": "1.0.0",
"next": "10.2.3",
"next-mdx-remote": "^3.0.1",
"next-seo": "4.24.0",
"next-themes": "^0.0.14",
2021-05-16 14:23:00 +08:00
"postcss": "^8.2.15",
"preact": "^10.5.13",
"react": "17.0.2",
"react-dom": "17.0.2",
"reading-time": "1.3.0",
2021-01-09 17:50:45 +08:00
"rehype-katex": "^4.0.0",
"remark-autolink-headings": "6.0.1",
"remark-code-titles": "0.1.2",
"remark-footnotes": "^3.0.0",
"remark-math": "^3.0.1",
2021-01-09 17:50:45 +08:00
"remark-slug": "6.0.0",
2021-04-06 18:03:16 -05:00
"tailwindcss": "^2.1.1"
2021-01-09 17:50:45 +08:00
},
"devDependencies": {
"@next/bundle-analyzer": "10.2.3",
2021-01-09 17:50:45 +08:00
"@svgr/webpack": "^5.5.0",
2021-05-23 11:49:22 +08:00
"cross-env": "^7.0.3",
2021-01-12 23:35:36 +08:00
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.3.0",
2021-01-12 23:35:36 +08:00
"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.3",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
2021-01-09 17:50:45 +08:00
"next-compose-plugins": "^2.2.1",
"next-remote-watch": "^1.0.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.1",
"unified": "9.2.1",
2021-01-09 17:50:45 +08:00
"unist-util-visit": "2.0.3"
2021-01-12 23:35:36 +08:00
},
"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
}
}