-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.82 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
{
"name": "citadel",
"version": "0.6.0",
"type": "module",
"scripts": {
"build": "bun run build:app",
"build:app": "tauri build",
"build:web": "tsc && vite build",
"dev": "bun run dev:app",
"dev:app": "tauri dev --config src-tauri/tauri.dev.conf.json",
"dev:web": "vite dev",
"format": "bun format:web; bun format:backend",
"format:backend": "cargo fmt --all",
"format:web": "biome format --write src/",
"format:check": "biome format src/ && cargo fmt --check --all",
"lint": "bun lint:web && bun lint:backend",
"lint:web": "biome lint src/",
"lint:backend": "cargo clippy --workspace",
"quality": "bun format:check; bun lint",
"preview:web": "vite preview",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@chromatic-com/storybook": "^1.2.25",
"@faker-js/faker": "^8.4.1",
"@fontsource/fira-mono": "^4.5.10",
"@iconify-json/f7": "^1.1.0",
"@melt-ui/pp": "^0.3.0",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/react": "^8.0.5",
"@storybook/react-vite": "^8.0.5",
"@storybook/test": "^8.0.5",
"@tanstack/router-devtools": "^1.29.2",
"@tanstack/router-vite-plugin": "^1.30.0",
"@tauri-apps/cli": "^2.8.4",
"@types/react": "18.2",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.38",
"postcss-load-config": "^5.0.2",
"storybook": "^8.0.5",
"storybook-dark-mode": "^4.0.1",
"tailwindcss": "^3.3.6",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"unplugin-icons": "^0.18.2",
"vite": "^5.0.3",
"vitest": "^3.2.6"
},
"dependencies": {
"@crabnebula/tauri-plugin-drag": "^0.2.0",
"@radix-ui/react-alert-dialog": "^1.1.16",
"@radix-ui/react-checkbox": "^1.3.4",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-select": "^2.3.0",
"@radix-ui/react-switch": "^1.3.0",
"@radix-ui/react-toggle-group": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.9",
"@tanstack/react-router": "^1.29.2",
"@tanstack/react-virtual": "^3.14.2",
"@tauri-apps/api": "^2.10.0",
"@tauri-apps/plugin-clipboard-manager": "^2.3.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.2",
"@tauri-apps/plugin-opener": "~2",
"@tauri-apps/plugin-shell": "^2.3.1",
"@tauri-apps/plugin-store": "~2",
"@types/dompurify": "^3.2.0",
"bits-ui": "^0.14.0",
"clsx": "^2.1.0",
"dompurify": "^3.2.6",
"react": "18.2",
"react-dom": "18.2",
"tailwind-merge": "^2.2.0",
"tailwind-variants": "^0.1.20",
"zustand": "^5.0.8"
}
}