-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.86 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": "hive-app",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:linux": "tauri build",
"tauri:windows": "tauri build -- --runner cargo-xwin --target x86_64-pc-windows-msvc",
"build:all": "tauri build && tauri build --runner cargo-xwin --target x86_64-pc-windows-msvc",
"format": "prettier --write .",
"format-check": "prettier --check .",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings 2500",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"ci:quality": "npm run typecheck && npm run lint && npm run test"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
],
"src-tauri/**/*.rs": [
"cargo fmt -- --check",
"cargo clippy -- -D warnings"
]
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@tabler/icons-react": "^3.44.0",
"@tailwindcss/vite": "^4.3.1",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-opener": "^2.5.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"axios": "^1.18.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.40.0",
"lucide-react": "^1.18.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.5.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.6.0",
"react-router-dom": "^7.17.0",
"recharts": "^3.8.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@tauri-apps/cli": "^2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.9.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.4",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.0.7",
"prettier": "^3.8.4",
"shadcn": "^4.11.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.66.0",
"vite": "^7.0.4",
"vitest": "^4.1.10"
}
}