-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.83 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
{
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"logo": "tsx ./src/build-icons.tsx",
"prepare": "husky",
"tc": "tsc --noEmit --watch",
"lint": "tsc --noEmit && eslint .",
"lint:fix": "eslint . --fix",
"lint:format": "prettier . --write"
},
"dependencies": {
"@hugeicons/core-free-icons": "^4.1.2",
"@hugeicons/react": "^1.1.6",
"@tanstack/react-hotkeys": "^0.10.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.24",
"class-variance-authority": "^0",
"clsx": "^2",
"fuse.js": "^7.3.0",
"minisearch": "^7.2.0",
"next": "^16",
"next-themes": "^0",
"nuqs": "^2.8.9",
"radix-ui": "^1.4.3",
"react": "^19",
"react-dom": "^19",
"react-icons": "^5.6.0",
"shadcn": "^4.7.0",
"sharp": "^0.34.5",
"tailwind-merge": "^3",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@eslint/compat": "^2",
"@eslint/js": "^9",
"@tailwindcss/postcss": "^4",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16",
"eslint-config-prettier": "^10",
"eslint-plugin-check-file": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^7",
"husky": "^9",
"jiti": "^2",
"lint-staged": "^16",
"prettier": "^3",
"prettier-plugin-organize-imports": "^4",
"prettier-plugin-tailwindcss": "^0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"typescript-eslint": "^8"
},
"overrides": {
"react": "*",
"react-dom": "*"
}
}