-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.73 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.73 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
{
"name": "know-learning",
"version": "1.0.0",
"description": "An Electron application with React and TypeScript",
"main": "./out/main/index.js",
"author": "example.com",
"homepage": "https://electron-vite.org",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@ant-design/pro-components": "^2.7.19",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@reduxjs/toolkit": "^2.2.8",
"@wangeditor/editor-for-react": "^1.0.6",
"antd": "^5.22.1",
"axios": "^1.7.7",
"base-64": "^1.0.0",
"crypto-js": "^4.2.0",
"electron-store": "^10.0.0",
"electron-updater": "^6.1.7",
"lucide-react": "^0.447.0",
"moment": "^2.30.1",
"p-limit": "^6.1.0",
"path": "^0.12.7",
"quill": "^2.0.2",
"quill-image-resize-module-react": "^3.0.0",
"react-bmapgl": "^0.2.28",
"react-icons": "^5.3.0",
"react-infinite-scroll-component": "^6.1.0",
"react-quill": "^2.0.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"redux": "^5.0.1",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-persist-electron-storage": "^2.1.0",
"reqwest": "^2.0.5",
"spark-md5": "^3.0.2"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/bmapgl": "^0.0.7",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"electron": "^33.0.2",
"electron-builder": "^24.13.3",
"electron-vite": "^2.3.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"postcss": "^8.4.47",
"prettier": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass-embedded": "^1.79.3",
"tailwindcss": "^3.4.12",
"typescript": "^5.6.3",
"vite": "^5.3.1"
}
}