-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1.3 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
{
"name": "hhd-ui",
"private": true,
"version": "3.2.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build_noerr": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"electron-build": "rm -rf ./electron/static/build && mkdir -p ./electron/static/ && vite build && cp -rf ./dist ./electron/static/build && sed -i 's\\/assets\\./assets\\g' ./electron/static/build/index.html && mkdir -p ./electron/static/build/src && cp -rf ./src/assets ./electron/static/build/src"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@reduxjs/toolkit": "^2.2.5",
"framer-motion": "^11.2.12",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@types/lodash": "^4.17.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"typescript": "^5.5.2",
"vite": "^5.3.1"
}
}