jonbio/package.json

74 lines
2.1 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",
2022-06-15 23:40:18 +08:00
"version": "1.5.6",
2021-01-09 17:50:45 +08:00
"private": true,
"scripts": {
2021-11-19 00:12:26 +08:00
"start": "cross-env SOCKET=true node ./scripts/next-remote-watch.js ./data",
"dev": "next dev",
2021-08-25 08:52:37 +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",
2021-06-23 18:45:21 +08:00
"lint": "next lint --fix --dir pages --dir components --dir lib --dir layouts --dir scripts",
"prepare": "husky install"
2021-01-09 17:50:45 +08:00
},
"dependencies": {
2022-02-01 09:20:15 +01:00
"@fontsource/inter": "4.5.2",
2021-08-18 17:33:15 +02:00
"@mailchimp/mailchimp_marketing": "^3.0.58",
2021-12-15 18:05:37 +08:00
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.0",
"esbuild": "^0.13.13",
2021-08-20 18:03:38 +03:00
"github-slugger": "^1.3.0",
2021-01-09 17:50:45 +08:00
"gray-matter": "^4.0.2",
"image-size": "1.0.0",
"mdx-bundler": "^8.0.0",
2022-04-05 10:10:40 -07:00
"next": "12.1.4",
"next-themes": "^0.0.14",
2021-12-15 18:05:37 +08:00
"postcss": "^8.4.5",
"preact": "^10.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"reading-time": "1.3.0",
"rehype-autolink-headings": "^6.1.0",
2022-04-05 10:10:40 -07:00
"rehype-citation": "^0.4.0",
"rehype-katex": "^6.0.2",
2022-01-11 19:18:24 +01:00
"rehype-preset-minify": "6.0.0",
"rehype-prism-plus": "^1.1.3",
"rehype-slug": "^5.0.0",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.28.3",
2022-04-05 10:10:40 -07:00
"tailwindcss": "^3.0.23",
2021-08-14 23:11:18 +08:00
"unist-util-visit": "^4.0.0"
2021-01-09 17:50:45 +08:00
},
"devDependencies": {
2022-04-05 10:10:40 -07:00
"@next/bundle-analyzer": "12.1.4",
2021-12-16 14:29:37 +08:00
"@svgr/webpack": "^6.1.2",
2021-05-23 11:49:22 +08:00
"cross-env": "^7.0.3",
2021-07-04 16:12:36 +08:00
"dedent": "^0.7.0",
"eslint": "^7.29.0",
2022-04-05 10:10:40 -07:00
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.3.0",
2021-01-12 23:35:36 +08:00
"eslint-plugin-prettier": "^3.3.1",
2021-01-09 17:50:45 +08:00
"file-loader": "^6.0.0",
"globby": "11.0.3",
"husky": "^6.0.0",
2021-07-04 16:12:36 +08:00
"inquirer": "^8.1.1",
"lint-staged": "^11.0.0",
"next-remote-watch": "^1.0.0",
2022-01-31 23:58:10 +08:00
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.0"
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
}
}