-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
84 lines (84 loc) · 2.28 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
{
"name": "reactflux",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "pnpm run build && vite preview",
"lint": "eslint",
"format": "prettier",
"check": "prettier --write . && eslint --fix",
"prepare": "husky",
"prebuild": "node src/scripts/version-info.js"
},
"dependencies": {
"@arco-design/color": "^0.4.0",
"@arco-design/web-react": "^2.66.1",
"@nanostores/persistent": "^1.0.0",
"@nanostores/react": "^1.0.0",
"canvas-confetti": "^1.9.3",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"framer-motion": "^12.9.1",
"highlight.js": "^11.11.1",
"hls.js": "^1.6.2",
"html-react-parser": "^5.2.3",
"littlefoot": "^4.1.2",
"lodash-es": "^4.17.21",
"nanostores": "^1.0.1",
"node-polyglot": "^2.6.0",
"ofetch": "^1.4.1",
"plyr": "^3.7.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hotkeys-hook": "^5.0.1",
"react-intersection-observer": "^9.16.0",
"react-photo-view": "^1.2.7",
"react-router": "^7.5.2",
"react-swipeable": "^7.0.2",
"react-syntax-highlighter": "^15.6.1",
"simplebar-react": "^3.3.0",
"validator": "^13.15.0",
"virtua": "^0.40.4"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/node": "^22.15.2",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@vitejs/plugin-react": "^4.4.1",
"babel-plugin-react-compiler": "19.1.0-rc.1",
"depcheck": "^1.4.7",
"eslint": "^9.25.1",
"eslint-plugin-import-x": "^4.11.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "19.1.0-rc.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"react-compiler-runtime": "19.1.0-rc.1",
"rollup-plugin-visualizer": "^5.14.0",
"vite": "^6.3.3",
"vite-plugin-pwa": "^1.0.0",
"workbox-window": "^7.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,mjs,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,jsonc,css,md}": [
"prettier --write"
]
}
}