This repository was archived by the owner on Dec 24, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 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
{
"name": "lucamail",
"version": "0.0.2-beta",
"author": "Raghavyuva <raghavyuva@gmail.com>",
"license": "GPL-3.0",
"scripts": {
"dev": "run-p dev:*",
"dev:vite": "vite",
"dev:electron": "electron src/main/index.js",
"build": "run-s build:*",
"build:vite": "vite build --base=./",
"build:electron": "electron-builder build",
"postinstall": "install-app-deps"
},
"dependencies": {
"csv-writer": "^1.6.0",
"draft-convert": "^2.1.12",
"draft-js": "^0.11.7",
"electron-context-menu": "^3.1.2",
"electron-ipc-proxy": "^2.1.0",
"electron-log": "^4.4.7",
"electron-store": "^8.0.1",
"electron-updater": "^5.0.1",
"electron-window-state": "^5.0.3",
"framer-motion": "^6.3.4",
"imapflow": "^1.0.96",
"lodash-es": "^4.17.21",
"mailparser": "^3.5.0",
"nodemailer": "^6.7.5",
"prop-types": "^15.8.1",
"re-resizable": "^6.9.9",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-draft-wysiwyg": "^1.14.7",
"react-google-login": "^5.2.2",
"react-i18next": "^11.16.9",
"react-icons": "^4.3.1",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0",
"simpleparser": "^0.0.1-alfa",
"tailwind-scrollbar": "^1.3.1"
},
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.6",
"@vue/compiler-sfc": "^3.2.36",
"autoprefixer": "^10.4.7",
"electron": "^19.0.1",
"electron-builder": "^23.0.3",
"electron-reloader": "^1.2.3",
"npm-check-updates": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"tailwindcss": "^3.0.24",
"vite": "^2.9.9"
},
"peerDependencies": {
"postcss": "^8.4.14"
},
"keywords": [
"electron",
"react",
"vite",
"tailwind"
],
"main": "src/main/index.js",
"resolutions": {
"postcss": "^8.4.14"
}
}