-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.84 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
{
"name": "task-reminder-app",
"version": "5.2.0",
"description": "Kişisel görev yönetimi masaüstü uygulaması",
"main": "./dist/main/main.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"test": "vitest run",
"test:watch": "vitest",
"pack": "electron-vite build && electron-builder --dir",
"dist": "electron-vite build && electron-builder"
},
"build": {
"appId": "com.taskreminder.app",
"productName": "GorevYoneticisi",
"directories": {
"output": "release"
},
"files": [
"dist/**/*"
],
"publish": [
{
"provider": "github",
"owner": "seind-dev",
"repo": "seind-taskmanager"
}
],
"win": {
"target": [
"nsis"
],
"signAndEditExecutable": false
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"deleteAppDataOnUninstall": false
}
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/node-cron": "^3.0.11",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"electron": "^28.1.3",
"electron-builder": "^26.7.0",
"electron-vite": "^2.0.0",
"fast-check": "^3.15.0",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2"
},
"dependencies": {
"@supabase/supabase-js": "^2.97.0",
"@tanstack/react-virtual": "^3.1.3",
"electron-log": "^5.4.3",
"electron-store": "^8.1.0",
"electron-updater": "^6.8.3",
"node-cron": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"zustand": "^4.5.0"
}
}