forked from JCIOTeam/jcutmirror-new
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.08 KB
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
{
"name": "mirror-site",
"version": "1.0.1",
"private": true,
"type": "module",
"description": "基于 React + TypeScript + Material UI 构建的现代化镜像站前端,设计用于配合 tunasync 使用",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "vite",
"build": "npm run typecheck && vite build && node scripts/generate-sitemap.mjs && node scripts/generate-rss.mjs",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mdx-js/react": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"@mui/icons-material": "^9.0.0",
"@mui/material": "^9.0.0",
"@mui/system": "^9.0.0",
"@tanstack/react-query": "^5.100.9",
"date-fns": "^4.1.0",
"i18next": "^26.0.8",
"i18next-browser-languagedetector": "^8.2.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-i18next": "^17.0.6",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.30.3",
"react-syntax-highlighter": "^16.1.1",
"react-virtuoso": "^4.18.7",
"remark-gfm": "^4.0.1",
"simple-icons": "^16.18.1",
"zustand": "^5.0.13"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "15.5",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "9.39.4",
"eslint-config-prettier": "^9.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-react-hooks": "^5.2.0",
"jsdom": "^25.0.1",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.2",
"vite": "^7.3.2",
"vitest": "^4.1.5"
}
}