-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.08 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.08 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
{
"name": "vtbsfun",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"prepare": "husky",
"lint": "eslint src --ext .ts,.tsx",
"format-check": "prettier . --check --ignore-unknown",
"format-fix": "prettier . --fix --ignore-unknown",
"ci": "bun run lint && bun run format-check"
},
"dependencies": {
"@base-ui-components/react": "^1.0.0-beta.4",
"@tanstack/react-query": "^5.90.6",
"@tanstack/react-router": "^1.134.12",
"@tanstack/react-router-devtools": "^1.134.12",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"flexsearch": "^0.8.212",
"ky": "^1.14.0",
"lucide-react": "^0.552.0",
"radix-ui": "^1.4.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-error-boundary": "^6.0.0",
"recharts": "2.15.4",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.16",
"valibot": "^1.1.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/eslint-plugin-query": "^5.91.2",
"@tanstack/react-query-devtools": "^5.90.2",
"@tanstack/router-plugin": "^1.134.12",
"@tauri-apps/cli": "^2",
"@types/date-fns": "^2.6.3",
"@types/node": "^24.10.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.2.6",
"prettier": "3.6.2",
"tw-animate-css": "^1.4.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.46.3",
"vite": "^7.0.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
"prettier --check --ignore-unknown"
],
"*.{md,json}": "prettier --check --ignore-unknown"
}
}