This repository was archived by the owner on Jan 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.95 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.95 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
{
"name": "minimailer",
"version": "0.1.2",
"description": "A cross platform desktop app to test/debug email notifications of your application",
"main": "./app/app.js",
"scripts": {
"copy-files": "copyfiles -u 2 ./src/minimailer/**/*.html ./app",
"dev": "run-p dev:*",
"dev:electron": "rimraf app && tsc --p tsconfig.node.json && npm run copy-files && electron .",
"dev:ui": "vite",
"build": "run-s build:*",
"build:ui": "vite build --base=./",
"build:electron": "rimraf app && tsc --p tsconfig.node.json && npm run copy-files",
"deploy": "electron-builder --config=build.js --publish=always",
"start": "electron .",
"format": "prettier --write \"./*.{ts,js}\" \"./src/**/*.{js,ts,jsx,tsx,html}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/neplextech/MiniMailer.git"
},
"author": "skdhg",
"license": "MIT",
"bugs": {
"url": "https://github.com/neplextech/MiniMailer/issues"
},
"homepage": "https://github.com/neplextech/MiniMailer#readme",
"devDependencies": {
"@chakra-ui/react": "^2.4.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@types/mailparser": "^3.4.0",
"@types/node": "^18.11.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/sanitize-html": "^2.6.2",
"@types/smtp-server": "^3.5.7",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.13",
"copyfiles": "^2.4.1",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"framer-motion": "^6",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"rimraf": "^3.0.2",
"sanitize-html": "^2.7.3",
"tailwind-merge": "^1.8.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^3.2.4"
},
"dependencies": {
"electron-updater": "^5.3.0",
"mailparser": "^3.6.0",
"smtp-server": "^3.11.0"
}
}