-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
83 lines (83 loc) · 2.73 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
{
"name": "citadel",
"version": "0.3.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",
"dev:web": "vite dev",
"format": "bun format:web; bun format:backend",
"format:backend": "cd src-tauri; cargo fmt",
"format:web": "biome format --write src/",
"format:check": "biome format src/ && (cd src-tauri; cargo fmt --check)",
"lint": "bun lint:web && bun lint:backend",
"lint:web": "biome lint src/ && eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:backend": "cd src-tauri; cargo clippy",
"quality": "bun format:check; bun lint",
"preview:web": "vite preview",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@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": "^1",
"@types/react": "18.2",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.0",
"eslint-plugin-paths": "^1.0.6",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"postcss": "^8.4.38",
"postcss-load-config": "^5.0.2",
"postcss-preset-mantine": "^1.13.0",
"postcss-simple-vars": "^7.0.1",
"storybook": "^8.0.5",
"storybook-dark-mode": "^4.0.1",
"svelte": "^4.2.7",
"tailwindcss": "^3.3.6",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"unplugin-icons": "^0.18.2",
"vite": "^5.0.3",
"vitest": "^1.5.0"
},
"dependencies": {
"@crabnebula/tauri-plugin-drag": "^0.2.0",
"@mantine/core": "^7.7.0",
"@mantine/form": "^7.7.0",
"@mantine/hooks": "^7.7.0",
"@tanstack/react-router": "^1.29.2",
"@tauri-apps/api": "^1",
"bits-ui": "^0.14.0",
"clsx": "^2.1.0",
"mantine-datatable": "^7.6.1",
"react": "18.2",
"react-dom": "18.2",
"tailwind-merge": "^2.2.0",
"tailwind-variants": "^0.1.20",
"tauri-settings": "^0.3.4"
}
}