-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.97 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.97 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
{
"name": "focusnote",
"version": "1.0.1-beta",
"description": "A minimalistic note-taking app",
"main": "./out/main/index.js",
"author": "FocusNote Team",
"homepage": "https://electron-vite.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/erikivanmelo/focusnote.git"
},
"bugs": {
"url": "https://github.com/erikivanmelo/focusnote/issues"
},
"keywords": [
"electron",
"focusnote",
"note-taking",
"productivity",
"desktop-app",
"electron-app"
],
"build": {
"extends": "./electron-builder.yml"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json",
"typecheck:main": "tsc --noEmit -p tsconfig.main.json",
"typecheck": "npm run typecheck:node && npm run typecheck:web && npm run typecheck:main",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux",
"add-sample-notes": "NODE_OPTIONS='--no-warnings' electron --no-sandbox ./scripts/add-notes.js"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@reduxjs/toolkit": "^2.7.0",
"@tanstack/react-query": "^5.76.1",
"@tiptap/extension-placeholder": "^2.12.0",
"@tiptap/extension-strike": "^2.12.0",
"@tiptap/react": "^2.12.0",
"@tiptap/starter-kit": "^2.12.0",
"@types/date-fns": "^2.5.3",
"axios": "^1.9.0",
"better-sqlite3": "^11.10.0",
"bootstrap": "^5.3.5",
"bootstrap-icons": "^1.11.3",
"date-fns": "^4.1.0",
"electron-updater": "^6.3.9",
"quill-markdown-shortcuts": "^0.0.10",
"react": "^19.0.0",
"react-bootstrap": "^2.10.10",
"react-bootstrap-icons": "^1.11.6",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.5.2",
"react-redux": "^9.2.0",
"react-router-dom": "^7.5.3",
"sass-embedded": "^1.89.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/electron": "^1.4.38",
"@types/node": "^24.0.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.5.2",
"electron": "^36.4.0",
"electron-builder": "^25.1.8",
"electron-vite": "^3.1.0",
"eslint": "^9.24.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"npm-check": "^6.0.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.8.3",
"vite": "^6.2.6"
}
}