-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.28 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "tsuizen-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_ENV=development && next dev",
"build": "next build ",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"style": "stylelint \"**/**/*.css\" --fix",
"format": "prettier --write .",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@docsearch/react": "3",
"@giscus/react": "^2.2.6",
"@prisma/client": "^4.8.0",
"@types/hast": "^2.3.4",
"@types/node": "18.11.10",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@uiw/react-md-editor": "v3.6.0",
"@vercel/analytics": "^0.1.8",
"ahooks": "^3.7.4",
"algoliasearch": "^4.14.3",
"any-touch": "^2.2.0",
"axios": "^1.2.0",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"fuse.js": "^6.6.2",
"hast-util-has-property": "^2.0.1",
"instantsearch.css": "^8.0.0",
"iron-session": "^6.3.1",
"joi": "^17.7.0",
"jotai": "^1.12.1",
"js-base64": "^3.7.3",
"md5": "^2.3.0",
"mdx-bundler": "^9.2.1",
"mysql2": "^2.3.3",
"next": "13.0.5",
"next-cookie": "^2.8.0",
"next-remove-imports": "^1.0.8",
"next-seo": "^5.15.0",
"next-sitemap": "^3.1.45",
"normalize.css": "^8.0.1",
"prism-react-renderer": "^1.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-instantsearch-dom": "^6.39.0",
"react-instantsearch-hooks-web": "^6.39.3",
"reflect-metadata": "^0.1.13",
"rehype-infer-reading-time-meta": "^1.1.0",
"rehype-join-line": "^1.0.2",
"rehype-target-blank": "^1.0.5",
"remark-reading-time": "^2.0.1",
"rss": "^1.2.2",
"run": "^1.4.0",
"style": "^0.0.3",
"theme-change": "^2.2.0",
"typescript": "4.9.3",
"unist-util-visit": "^4.1.2",
"zustand": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@mapbox/rehype-prism": "^0.8.0",
"@types/md5": "^2.3.2",
"@types/mockjs": "^1.0.7",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"daisyui": "^2.46.0",
"esbuild": "^0.16.12",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-simple-import-sort": "^8.0.0",
"gray-matter": "^4.0.3",
"hastscript": "^7.2.0",
"husky": "^8.0.2",
"lint-staged": ">=10",
"markdownlint-cli": "^0.32.2",
"mddir": "^1.1.1",
"mockjs": "^1.1.0",
"next-with-less": "^2.0.5",
"postcss": "^8.4.20",
"prettier": "^2.8.0",
"prisma": "^4.8.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-prism-plus": "^1.5.0",
"rehype-slug": "^5.1.0",
"remark-autolink-headings": "^7.0.1",
"remark-directive": "^2.0.1",
"remark-gfm": "^3.0.1",
"sass": "^1.57.1",
"scss": "^0.2.4",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*.{js,css,md}": "prettier --write"
}
}