-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
101 lines (101 loc) · 3.17 KB
/
package.json
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
{
"name": "en-croissant",
"private": true,
"version": "0.11.1",
"type": "module",
"scripts": {
"start-vite": "vite",
"build-vite": "tsc --noEmit && vite build",
"build": "tauri build --no-bundle",
"dev": "tauri dev",
"tauri": "tauri",
"format": "biome format --write ./src",
"test": "vitest run",
"lint": "tsc --noEmit && biome check ./src",
"lint:ci": "tsc --noEmit && biome ci ./src --diagnostic-level=error",
"lint:fix": "biome check --apply ./src"
},
"dependencies": {
"@badrap/result": "^0.2.13",
"@hello-pangea/dnd": "^16.5.0",
"@mantine/charts": "^7.6.2",
"@mantine/core": "^7.6.2",
"@mantine/dates": "^7.6.2",
"@mantine/form": "^7.6.2",
"@mantine/hooks": "^7.6.2",
"@mantine/notifications": "^7.6.2",
"@mantine/tiptap": "^7.6.2",
"@mantine/vanilla-extract": "^7.6.2",
"@tabler/icons-react": "^2.22.0",
"@tanstack/react-router": "^1.20.0",
"@tanstack/react-virtual": "^3.1.3",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-cli": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-http": "^2.0.0",
"@tauri-apps/plugin-log": "^2.0.0",
"@tauri-apps/plugin-os": "^2.0.0",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"@tauri-apps/plugin-updater": "^2.0.0",
"@tauri-apps/plugin-window-state": "~2",
"@tiptap/extension-link": "2.2.4",
"@tiptap/extension-placeholder": "2.2.4",
"@tiptap/extension-underline": "2.2.4",
"@tiptap/pm": "2.2.4",
"@tiptap/react": "2.2.4",
"@tiptap/starter-kit": "2.2.4",
"@types/dom-to-image": "^2.6.7",
"@vitejs/plugin-react-swc": "^3.7.0",
"chessground": "^9.0.4",
"chessops": "^0.14.0",
"clsx": "^2.0.0",
"dayjs": "^1.11.10",
"dom-to-image": "^2.6.0",
"fast-deep-equal": "^3.1.3",
"fuse.js": "^7.0.0",
"i18next": "^23.11.2",
"immer": "^10.0.4",
"jotai": "^2.7.0",
"mantine-contextmenu": "^7.6.2",
"mantine-datatable": "^7.6.1",
"mantine-flagpack": "^4.0.0",
"react": "^18.2.0",
"react-contenteditable": "^3.3.7",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-helmet": "^6.1.0",
"react-hotkeys-hook": "^4.5.0",
"react-i18next": "^14.1.0",
"react-markdown": "^9.0.1",
"react-mosaic-component": "^6.1.0",
"recharts": "^2.14.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"swr": "^2.2.5",
"tiptap-markdown": "^0.8.9",
"ts-fsrs": "^3.5.1",
"ts-pattern": "^5.0.8",
"vite": "^5.4.8",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.0",
"@tanstack/router-vite-plugin": "^1.20.0",
"@tauri-apps/cli": "2.0.1",
"@types/lodash": "^4.17.0",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.22",
"@types/react-helmet": "^6.1.11",
"@types/react-virtualized-auto-sizer": "^1.0.4",
"@types/react-window": "^1.8.8",
"@types/react-window-infinite-loader": "^1.0.9",
"@vanilla-extract/css": "^1.14.1",
"@vanilla-extract/vite-plugin": "^4.0.6",
"jsdom": "^24.0.0",
"typescript": "^5.4.2",
"vitest": "^2.1.1"
}
}