-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.13 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.13 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
{
"name": "devlog",
"version": "0.0.3",
"description": "A (local/private) desktop productivity app for work session tracking, todos, notes, etc — built with Electrobun, React, and SQLite",
"type": "module",
"scripts": {
"dev": "run-p --print-label dev:vite dev:electrobun:hmr",
"dev:vite": "vite",
"dev:electrobun": "electrobun dev",
"dev:electrobun:hmr": "USE_VITE_DEV=1 electrobun dev",
"dev:build": "vite build && electrobun build",
"build": "npm run build:routes && vite build",
"build:app": "npm run build && electrobun build",
"build:canary": "rm -rf artifacts && vite build && electrobun build --env=canary",
"build:stable": "rm -rf artifacts && vite build && electrobun build --env=stable",
"start": "bun run build && electrobun dev",
"lint": "biome check . --error-on-warnings",
"format": "biome check . --write",
"typecheck": "tsc --noEmit && tsc -p tsconfig.node.json --noEmit",
"build:routes": "npx @tanstack/router-cli generate --routes src/routes --output src/routeTree.gen.ts",
"cli": "bun src/cli.ts",
"ci": "bun src/cli.ts ci",
"co": "bun src/cli.ts co"
},
"keywords": [
"electrobun",
"devlog",
"time-tracking"
],
"author": "Craig Andersen",
"license": "MIT",
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-router": "^1.20.0",
"@tiptap/extension-highlight": "^3.13.0",
"@tiptap/extension-link": "^3.13.0",
"@tiptap/extension-placeholder": "^3.13.0",
"@tiptap/extension-task-item": "^3.13.0",
"@tiptap/extension-task-list": "^3.13.0",
"@tiptap/extension-text-style": "^3.13.0",
"@tiptap/extension-underline": "^3.13.0",
"@tiptap/pm": "^3.13.0",
"@tiptap/react": "^3.13.0",
"@tiptap/starter-kit": "^3.13.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.3.1",
"drizzle-orm": "^0.45.1",
"electrobun": "latest",
"lucide-react": "^0.344.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"drizzle-kit": "^0.31.8",
"npm-run-all2": "^7.0.1",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3",
"vite": "^5.0.8"
}
}