-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
{
"name": "crm",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"package": "npm run package:frontend && npm run package:backend",
"package:frontend": "vite build && tar czf crm-frontend.tar.gz -C dist .",
"package:backend": "tar czf crm-backend.tar.gz -C backend .",
"tauri": "tauri"
},
"dependencies": {
"@rootcx/sdk": "^0.9.0",
"@rootcx/ui": "^0.6.0",
"@tabler/icons-react": "^3.30.0",
"@tailwindcss/vite": "^4.0.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"@tiptap/core": "^3.22.0",
"@tiptap/extension-link": "^3.22.0",
"@tiptap/extension-placeholder": "^3.22.0",
"@tiptap/extension-typography": "^3.22.0",
"@tiptap/extension-underline": "^3.22.0",
"@tiptap/react": "^3.22.0",
"@tiptap/starter-kit": "^3.22.0",
"@tiptap/suggestion": "^3.22.0",
"clsx": "^2.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.5.0",
"tailwindcss": "^4.0.0",
"tippy.js": "^6.3.7",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0"
}
}