-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.06 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.06 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
{
"name": "tasktree-s",
"description": "A tree-structured task management app",
"author": "Jun Murakami",
"private": true,
"version": "1.4.13",
"type": "module",
"main": "./out/main/index.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"preview": "vite preview",
"dev:electron": "electron-vite dev",
"build:electron": "electron-vite build",
"start:electron": "electron-vite preview",
"postinstall": "electron-builder install-app-deps",
"build:electron:unpack": "npm run build:electron && electron-builder --dir",
"build:electron:win": "npm run build:electron && electron-builder --win",
"build:electron:mac": "electron-vite build && APPLE_API_KEY_ID=\"$APPLE_API_KEY\" APPLE_API_KEY=\"$APPLE_API_KEY_PATH\" electron-builder --mac",
"build:electron:linux": "electron-vite build && electron-builder --linux",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run src/__tests__/unit",
"test:integration": "bash scripts/test-with-emulator.sh -- src/__tests__/integration",
"test:all": "bash scripts/test-with-emulator.sh",
"version:patch": "bash scripts/bump-version.sh patch",
"version:minor": "bash scripts/bump-version.sh minor",
"version:major": "bash scripts/bump-version.sh major"
},
"dependencies": {
"@capacitor-firebase/authentication": "^8.0.1",
"@capacitor/android": "^8.0.2",
"@capacitor/core": "^8.0.2",
"@capacitor/filesystem": "^8.1.0",
"@capacitor/ios": "^8.0.2",
"@capacitor/preferences": "^8.0.0",
"@capacitor/share": "^8.0.0",
"@capawesome/capacitor-file-picker": "^8.0.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource-variable/noto-sans-jp": "^5.2.10",
"@fontsource/m-plus-1p": "^5.2.9",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@mui/x-date-pickers": "^8.27.0",
"dayjs": "^1.11.19",
"dexie": "^4.3.0",
"electron-context-menu": "^4.1.1",
"electron-updater": "^6.7.3",
"firebase": "^12.9.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-rnd": "^10.5.2",
"react-router-dom": "^7.13.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@capacitor/cli": "^8.0.2",
"@electron-toolkit/tsconfig": "^2.0.0",
"@eslint/js": "^9.0.0",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.3",
"@vitest/coverage-v8": "^4.0.18",
"electron": "^40.2.1",
"electron-builder": "^26.7.0",
"electron-vite": "^5.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"happy-dom": "^20.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}