-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.09 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
{
"name": "lg-admin-extend",
"description": "Better Luogu admin page",
"description:zh": "更好用的洛谷后台",
"type": "module",
"author": "Mr. Python",
"repository": "https://github.com/Mr-Python-in-China/lg-admin-extend.git",
"license": "LGPL-2.1-or-later",
"version": "0.6.0",
"private": true,
"packageManager": "yarn@4.3.1",
"scripts": {
"server": "http-server ./docs -p 54220",
"dev": "webpack serve --mode development",
"build": "webpack --mode production",
"build-with-bundle-analyzer": "webpack --mode production --env analyze",
"prettier:check": "prettier -c .",
"prettier:write": "prettier -w .",
"lint:fix": "eslint --fix",
"test:articleViewer": "webpack serve -c test/articleViewer/webpack.config.js"
},
"dependencies": {
"@fluentui/react-components": "^9.53.0",
"@fluentui/react-icons": "^2.0.249",
"@mr.python/axios-userscript-adapter": "^1.0.0",
"axios": "^1.7.2",
"dayjs": "^1.11.11",
"deepmerge": "^4.3.1",
"hast-util-to-jsx-runtime": "^2.3.0",
"highlight.js": "^11.10.0",
"katex": "^0.16.11",
"lg-markdown-processor": "https://github.com/Mr-Python-in-China/lg-markdown-processor.git",
"lodash": "^4.17.21",
"mdast-util-math": "^3.0.0",
"micromark-factory-space": "^2.0.0",
"micromark-util-character": "^2.1.0",
"parse-path": "^7.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.0",
"rehype-react": "^8.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/katex": "^0",
"@types/lodash": "^4",
"@types/parse-path": "^7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18",
"@types/serviceworker": "^0.0.86",
"@types/tampermonkey": "^5.0.3",
"@types/webpack-bundle-analyzer": "^4",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "8.56.0",
"eslint-plugin-react": "^7.34.2",
"html-webpack-plugin": "^5.6.0",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.14",
"prettier": "^3.3.0",
"remark-math": "^6.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.5.12",
"webpack-monkey": "^0.2.1",
"webpackbar": "^6.0.1"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid"
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.1%",
"not dead",
"not op_mini all"
]
}
}