-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.8 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
{
"name": "cleanmail",
"version": "0.0.1",
"description": "A desktop webmail client cleaner",
"packageManager": "bun@1.3.9",
"scripts": {
"build": "electrobun build",
"build:web": "vite build",
"dev": "electrobun dev --watch",
"dev:watch": "turbo run dev --watch --parallel",
"format": "biome format .",
"format:fix": "biome format --write .",
"format:watch": "bun --watch scripts/format-watch.ts",
"hmr": "vite --port 5173",
"hmr:mock": "VITE_MOCK=true vite --port 5173",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"lint:watch": "bun --watch scripts/lint-watch.ts",
"start": "turbo run hmr start:app",
"start:app": "electrobun dev",
"watch": "turbo run --ui tui format:watch lint:watch hmr start:app"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/geist": "^5.2.8",
"@lukemorales/query-key-factory": "^1.3.4",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-form": "^1.28.5",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-router": "^1.166.7",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electrobun": "latest",
"imapflow": "^1.2.13",
"keytar": "^7.9.0",
"lucide-react": "^0.577.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"shadcn": "^4.0.6",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@faker-js/faker": "^10.3.0",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-router-devtools": "^1.166.7",
"@tanstack/router-plugin": "^1.166.7",
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"tailwindcss": "^4",
"turbo": "^2.8.14",
"typescript": "^5.7.2",
"vite": "^8.0.0"
}
}