-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.96 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.96 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
{
"name": "bn-alpha",
"private": true,
"packageManager": "pnpm@9.12.2",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"fetch": "tsx scripts/fetch.ts",
"lint": "eslint .",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-menubar": "^1.1.15",
"@radix-ui/react-progress": "^1.1.6",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-tabs": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.6",
"@tanstack/react-query": "^5.76.1",
"axios": "^1.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"jotai": "^2.12.5",
"lodash-es": "^4.17.21",
"lucide-react": "^0.511.0",
"motion": "^12.12.1",
"next": "15.2.8",
"next-themes": "^0.4.6",
"p-limit": "^6.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sonner": "^2.0.3",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.29.4"
},
"devDependencies": {
"@antfu/eslint-config": "^4.14.1",
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.15.19",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"eslint": "^9.27.0",
"eslint-config-next": "15.2.1",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"picocolors": "^1.1.1",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.7",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"lint-staged": {
"*": "eslint --fix"
}
}