-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.72 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.72 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "letsfocus",
"version": "0.1.6",
"private": true,
"main": "main.js",
"scripts": {
"dev": "bun next dev",
"dev:electron": "wait-on http://localhost:3000 && electron .",
"dev:next-electron": "concurrently \"npm run dev\" \"npm run dev:electron\"",
"dev:tunnel": "concurrently \"npm run dev\" \"lt --port 3000 --subdomain letsfocus\"",
"build": "bun next build",
"build:electron": "bun build && electron-builder",
"build:all": "bun build && electron-builder --mac --win --linux",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"package": "electron-builder --dir",
"dist": "electron-builder",
"start": "bun next start",
"lint": "bun next lint",
"sync": "npx cap sync",
"android": "npx cap run android",
"ios": "npx cap run ios"
},
"build": {
"appId": "letsfocus.today",
"files": [
"main.js",
"preload.js",
"out/**/*"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"icon": "assets/icon.icns",
"target": "dmg"
},
"win": {
"icon": "assets/icon.ico",
"target": "portable"
},
"linux": {
"icon": "assets/icon.png",
"target": "AppImage"
}
},
"dependencies": {
"@capacitor/android": "^7.1.0",
"@capacitor/core": "^7.1.0",
"@capacitor/ios": "^7.1.0",
"@hookform/resolvers": "^3.9.0",
"@next/third-parties": "^14.2.15",
"@nextui-org/react": "^2.4.8",
"@openpanel/nextjs": "^1.0.5",
"@plunk/node": "^3.0.2",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.3",
"@sentry/nextjs": "^8.32.0",
"@types/bcryptjs": "^2.4.6",
"@types/canvas-confetti": "^1.6.4",
"@types/micro": "^10.0.0",
"@types/uuid": "^10.0.0",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"bcryptjs": "^2.4.3",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"framer-motion": "^11.11.9",
"lucide-react": "^0.456.0",
"micro": "^10.0.1",
"mongoose": "^8.6.3",
"next": "14.2.13",
"next-auth": "^4.24.7",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"react": "^18",
"react-beautiful-dnd": "^13.1.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"recharts": "^2.12.7",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@capacitor/cli": "^7.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18",
"concurrently": "^9.0.1",
"daisyui": "^4.12.12",
"electron": "^32.1.2",
"electron-builder": "^25.1.7",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"wait-on": "^7.2.0"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
}
}