-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.16 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.16 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
{
"name": "adhd-notes",
"version": "0.1.0",
"description": "Local-first markdown notes with forced daily task prioritization for ADHD users",
"main": "dist-electron/entry.js",
"author": "Tarek Atwan",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"electron:dev": "vite",
"electron:build": "tsc && vite build && electron-builder",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --config vitest.config.ts"
},
"overrides": {
"undici": "5.28.4"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@codemirror/lang-markdown": "^6.2.4",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.1",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fastify/cors": "^9.0.1",
"@mozilla/readability": "^0.6.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/turndown": "^5.0.6",
"better-sqlite3": "^12.5.0",
"chokidar": "^3.5.3",
"codemirror": "^6.0.1",
"date-fns": "^3.3.1",
"drizzle-orm": "^0.45.0",
"electron-store": "^8.1.0",
"fastify": "^4.28.1",
"framer-motion": "^11.0.3",
"jsdom": "^25.0.1",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-calendar": "^4.8.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"turndown": "^7.2.2",
"uuid": "^9.0.1",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.11.16",
"@types/path-browserify": "^1.0.3",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^4.0.18",
"concurrently": "^8.2.2",
"drizzle-kit": "^0.31.8",
"electron": "^28.2.1",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-electron": "^0.28.2",
"vite-plugin-electron-renderer": "^0.14.5",
"vitest": "^4.0.18",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.adhdnotes.app",
"productName": "ADHDNotes",
"icon": "img/desktop_icon.png",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis",
"portable"
]
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"category": "Office"
}
}
}