-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.78 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.78 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
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
118
119
{
"name": "RCNode",
"version": "6.0.0",
"private": true,
"author": "Fansaly",
"description": "CNode 社区 第三方 WEB APP",
"keywords": [
"react",
"react-component",
"material design",
"material-ui",
"cnodejs",
"cnode"
],
"license": "MIT",
"homepage": "https://fansaly.github.io/RCNode",
"repository": {
"type": "git",
"url": "https://github.com/fansaly/RCNode.git"
},
"bugs": {
"url": "https://github.com/fansaly/RCNode/issues"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"prepare": "husky",
"dev": "rimraf dev-dist && cross-env DEBUG=vite-plugin-pwa SW_DEV=true CLAIMS=true vite",
"build": "rimraf dist && cross-env DEBUG=vite-plugin-pwa CLAIMS=true vite build",
"preview": "vite preview",
"check": "pnpm check:lint && pnpm check:prettier && pnpm check:type",
"check:type": "tsc",
"check:lint": "eslint . --ext .jsx,.js,.ts,.tsx --ignore-path ./.eslintignore",
"check:prettier": "prettier --log-level warn --debug-check \"./**/*.{js,jsx,ts,tsx,json,css}\"",
"fix": "pnpm fix:lint && pnpm fix:prettier",
"fix:lint": "eslint . --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.eslintignore",
"fix:prettier": "prettier --log-level warn --write \"./**/*.{js,jsx,ts,tsx,json,css}\"",
"deps:check": "node packages/deps-check",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@mui/styles": "^5.15.15",
"@reduxjs/toolkit": "^2.2.3",
"axios": "^1.15.0",
"clipboard-copy": "^4.0.1",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"github-markdown-css": "^5.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-error-boundary": "^4.0.13",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.1",
"react-router-dom": "^6.22.3",
"react-scroll": "^1.9.0",
"react-swipeable-views": "^0.14.0",
"react-syntax-highlighter": "^15.5.0",
"react-transition-group": "^4.4.5",
"redux": "^5.0.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-raw": "^7.0.0",
"rehype-video": "^2.0.2",
"remark-gemoji": "^8.0.0",
"remark-gfm": "^4.0.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/react-scroll": "^1.8.10",
"@types/react-swipeable-views": "^0.13.5",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/react-transition-group": "^4.4.10",
"@types/redux-logger": "^3.0.13",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vitejs/plugin-react": "^4.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"redux-logger": "^3.0.6",
"rimraf": "^5.0.5",
"stylus": "^0.63.0",
"typescript": "^5.4.5",
"vite": "6.4.2",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^0.19.8",
"vite-plugin-svgr": "^4.2.0",
"workbox-core": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-window": "^7.0.0"
},
"engines": {
"node": "^18.18.0 || >=20 <24",
"pnpm": ">=6.0.0 <11.0.0"
}
}