-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.18 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.18 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
{
"name": "fiip",
"private": true,
"version": "3.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"tauri": "tauri",
"test": "vitest run",
"test:watch": "vitest",
"security-check": "npm audit",
"security-fix": "npm audit fix",
"build:update": "node scripts/sync-version.mjs && npx dotenv -e .env -- npx tauri build && node scripts/generate-latest.mjs",
"crowdin:push": "crowdin upload sources",
"crowdin:push:translations": "crowdin upload translations",
"crowdin:pull": "crowdin download",
"crowdin:sync": "crowdin upload sources && crowdin upload translations && crowdin download"
},
"dependencies": {
"@iconify-json/formkit": "^1.2.2",
"@iconify-json/logos": "^1.2.10",
"@iconify-json/mingcute": "^1.2.7",
"@iconify-json/mynaui": "^1.2.17",
"@iconify-json/skill-icons": "^1.2.4",
"@iconify/react": "^6.0.2",
"@supabase/supabase-js": "^2.98.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.5",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-http": "^2.5.6",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.3",
"@tauri-apps/plugin-updater": "^2.9.0",
"@tiptap/extension-color": "^3.22.3",
"@tiptap/extension-font-family": "^3.22.3",
"@tiptap/extension-highlight": "^3.22.3",
"@tiptap/extension-text-align": "^3.22.3",
"@tiptap/extension-text-style": "^3.22.3",
"@tiptap/extension-underline": "^3.22.3",
"@tiptap/react": "^3.22.3",
"@tiptap/starter-kit": "^3.22.3",
"clsx": "^2.1.1",
"csv-parser": "^3.2.0",
"debounce": "^3.0.0",
"dompurify": "^3.3.2",
"dotenv": "^17.3.1",
"emoji-picker-react": "^4.16.1",
"i18next": "^25.7.3",
"i18next-browser-languagedetector": "^8.2.0",
"katex": "^0.16.33",
"lucide-react": "^0.564.0",
"marked": "^17.0.1",
"patch-package": "^8.0.1",
"pdfjs-dist": "^5.4.449",
"postinstall-postinstall": "^2.1.0",
"prosemirror-languagetool": "^0.0.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^16.5.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@crowdin/cli": "^4.12.0",
"@eslint/js": "^9.39.3",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tailwindcss/postcss": "^4.1.17",
"@tauri-apps/cli": "^2.10.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/ui": "^4.1.1",
"autoprefixer": "^10.4.22",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"jsdom": "^28.1.0",
"postcss": "^8.5.6",
"source-map-cli": "^1.0.1",
"tailwindcss": "^4.1.17",
"unplugin-icons": "^23.0.1",
"vite": "^8.0.8",
"vitest": "^4.1.1"
},
"overrides": {
"flatted": ">=3.4.2"
}
}