-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "tailwind-nextjs-starter-blog",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "next-remote-watch ./data",
"dev": "next dev",
"build": "next build && node ./scripts/generate-sitemap",
"serve": "next start",
"analyze": "env ANALYZE=true next build"
},
"dependencies": {
"@mapbox/rehype-prism": "^0.5.0",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "10.1.3",
"@tailwindcss/forms": "^0.3.2",
"@tailwindcss/typography": "^0.4.0",
"autoprefixer": "^10.2.5",
"gray-matter": "^4.0.2",
"image-size": "0.9.7",
"next": "10.1.3",
"next-mdx-remote": "^2.1.3",
"next-seo": "4.23.0",
"next-themes": "^0.0.14",
"postcss": "^8.2.8",
"preact": "^10.5.13",
"react": "17.0.2",
"react-dom": "17.0.2",
"reading-time": "1.3.0",
"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",
"tailwindcss": "^2.1.1"
},
"devDependencies": {
"@next/bundle-analyzer": "10.1.3",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/jit": "^0.1.18",
"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",
"file-loader": "^6.0.0",
"globby": "11.0.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.3",
"next-compose-plugins": "^2.2.1",
"next-remote-watch": "^1.0.0",
"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.1",
"unist-util-visit": "2.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
}
}