-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 2.38 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
{
"name": "shuoshubao.github.io",
"version": "1.0.0",
"private": true,
"description": "个人博客",
"repository": {
"url": "https://github.com/shuoshubao/shuoshubao.github.io.git",
"type": "git"
},
"author": "shuoshubao <[email protected]>",
"scripts": {
"start": "npx vite",
"build": "npx vite build",
"prepare": "husky install",
"prettier": "npx prettier --write",
"lint": "npx eslint --ext .ts,.tsx,.js,.jsx,.vue -f html -o ESLintReport.html",
"lint:style": "npx stylelint --fix -o StyleLintReport.html --custom-formatter node_modules/stylelint-formatters-html src/**/*.{css,less,scss,sass}"
},
"dependencies": {
"@monaco-editor/loader": "^1.4.0",
"@nbfe/components": "^0.6.0",
"@nbfe/tools": "^0.5.2",
"ahooks": "^3.7.8",
"antd": "^5.19.4",
"axios": "^1.4.0",
"canvas-confetti": "^1.9.2",
"error-stack-parser": "^2.1.4",
"eventemitter3": "^5.0.1",
"filesize": "^8.0.7",
"github-markdown-css": "^5.1.0",
"highlight.js": "^11.7.0",
"i18next": "^23.2.8",
"katex": "^0.16.4",
"less": "^4.1.3",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"markdown-it-attrs": "^4.1.6",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-task-lists": "^2.1.1",
"md5": "^2.3.0",
"mdx-toc": "^1.2.0",
"mermaid": "^9.3.0",
"murmurhash-js": "^1.0.0",
"re-resizable": "^6.9.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.10",
"react-i18next": "^13.0.1",
"uuid": "^10.0.0",
"vconsole": "^3.15.1"
},
"devDependencies": {
"@babel/preset-react": "^7.22.5",
"@nbfe/standard": "^1.2.3",
"@vitejs/plugin-react": "^4.0.1",
"rollup-plugin-analyze": "^0.1.1",
"sass": "^1.57.1",
"vite": "^4.3.9",
"vite-plugin-externals": "^0.6.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,vue,css,less,scss,sass,json,md}": [
"prettier --write",
"git add"
],
"src/**/*.{css,less,scss,sass}": [
"npx stylelint --fix",
"git add"
],
"*.{ts,tsx,js,jsx,vue}": [
"eslint -f table",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}