-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.86 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.86 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
{
"name": "backnote",
"version": "1.3.0",
"description": "Backlogのタスクを付箋を剥がす感覚で完了していくデスクトップアプリ",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"postinstall": "electron-builder install-app-deps",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"build:backend": "bash scripts/build-backend.sh",
"build:all": "npm run build:backend && npm run build",
"pack": "npm run build:all && electron-builder --dir",
"dist": "npm run build:all && electron-builder",
"dist:mac": "npm run build:all && electron-builder --mac",
"dist:win": "npm run build:all && electron-builder --win"
},
"dependencies": {
"diff": "^9.0.0",
"electron-store": "^8.2.0",
"lottie-react": "^2.4.1",
"lucide-react": "^1.7.0",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@types/diff": "^7.0.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"electron": "^31.7.7",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^5.4.11"
}
}