-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
101 lines (101 loc) · 3.19 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
{
"name": "blog-jack",
"version": "2.0.0",
"sideEffects": [
"*.css",
"*.less",
"*.scss"
],
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./scripts/config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config ./scripts/config/webpack.prod.js",
"eslint": "eslint ./src/** --ignore-pattern *.jpg --ignore-pattern *.webp --ignore-pattern *.scss --ignore-pattern *.ttf --no-error-on-unmatched-pattern --quiet",
"commitlint": "commitlint --config .commitlintrc.js -e"
},
"browserslist": [
">0.2%",
"not dead",
"ie >= 9",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "yarn eslint",
"commit-msg": "yarn commitlint"
}
},
"dependencies": {
"@ahooksjs/use-url-state": "^3.1.13",
"@ant-design/icons": "4.7.0",
"@babel/core": "7.17.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime-corejs3": "7.17.2",
"@cloudbase/js-sdk": "^1.7.2",
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@redux-devtools/extension": "3.2.2",
"@types/markdown-navbar": "^1.4.0",
"@types/marked": "3.0.0",
"@types/pubsub-js": "^1.8.3",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/sanitize-html": "^2.6.2",
"@types/webpack-env": "1.16.3",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"ahooks": "3.1.13",
"antd": "4.19.0",
"antd-dayjs-webpack-plugin": "1.0.6",
"axios": "^0.26.1",
"babel-loader": "8.2.3",
"babel-plugin-import": "1.13.3",
"classnames": "2.3.1",
"clean-webpack-plugin": "4.0.0",
"copy-to-clipboard": "3.3.1",
"copy-webpack-plugin": "10.2.4",
"cross-env": "7.0.3",
"css-loader": "6.6.0",
"css-minimizer-webpack-plugin": "3.4.1",
"dayjs": "1.10.8",
"echarts": "^5.3.1",
"echarts-for-react": "^3.0.2",
"eslint": "8.10.0",
"eslint-config-alloy": "4.5.1",
"eslint-plugin-react": "7.29.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"fork-ts-checker-webpack-plugin": "7.2.1",
"highlight.js": "11.1.0",
"html-webpack-plugin": "5.5.0",
"husky": "4.3.8",
"jinrishici": "^1.0.6",
"less": "4.1.2",
"less-loader": "10.2.0",
"markdown-navbar": "^1.4.3",
"marked": "2.1.3",
"mini-css-extract-plugin": "2.5.3",
"postcss-loader": "6.2.1",
"postcss-preset-env": "7.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "4.3.1",
"react-redux": "7.2.6",
"react-router-dom": "6.2.2",
"redux": "4.1.2",
"sanitize-html": "^2.7.0",
"sass": "^1.63.6",
"sass-loader": "12.6.0",
"style-loader": "3.3.1",
"typescript": "4.6.2",
"webpack": "5.69.1",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4",
"webpack-merge": "5.8.0",
"webpackbar": "5.0.2"
}
}