forked from supermonkeyguys/Lec-CheckIn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.12 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.12 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
{
"name": "electron-checkin-lec",
"type": "commonjs",
"version": "1.0.4",
"description": "An Electron application with React and TypeScript",
"main": "./out/main/index.js",
"author": "example.com",
"build": {
"directories": {
"output": "./dist",
"app": "."
},
"appId": "com.yourcompany.checkin",
"productName": "LecCheckIn",
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"out/**/*",
"node_modules/**/*",
"package.json"
]
},
"homepage": "https://electron-vite.org",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"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",
"exe-build": "npm run build && electron-builder --win"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@reduxjs/toolkit": "^2.9.0",
"ahooks": "^3.9.5",
"antd": "^5.27.4",
"axios": "^1.12.2",
"crypto": "^1.0.1",
"dayjs": "^1.11.18",
"electron-store": "^11.0.2",
"electron-updater": "^6.3.9",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"jwt-decode": "^4.0.0",
"mime": "^4.1.0",
"moment": "^2.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.2.0",
"react-router-dom": "^6.30.1",
"react-scan": "^0.4.3",
"recharts": "^3.2.1",
"redux": "^5.0.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@types/node": "^22.18.6",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"chalk": "^5.6.2",
"electron": "^38.1.2",
"electron-builder": "^25.1.8",
"electron-rebuild": "^3.2.9",
"electron-vite": "^4.0.1",
"eslint": "^9.36.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"sass": "^1.93.2",
"typescript": "^5.9.2",
"vite": "^7.1.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
],
"ignoredBuiltDependencies": [
"@parcel/watcher",
"lzma-native"
]
}
}