-
Notifications
You must be signed in to change notification settings - Fork 511
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.2 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
86
87
{
"name": "real-time-fund",
"version": "2.4.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"@dicebear/collection": "^9.3.1",
"@dicebear/core": "^9.3.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@sentry/nextjs": "^10.53.1",
"@supabase/supabase-js": "^2.78.0",
"@tanstack/react-query": "^5.97.0",
"@tanstack/react-query-devtools": "^5.97.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.23",
"ahooks": "^3.9.6",
"chart.js": "^4.5.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.19",
"framer-motion": "^12.29.2",
"fuse.js": "^7.1.0",
"input-otp": "^1.4.2",
"lodash": "^4.17.23",
"lucide-react": "^0.577.0",
"next": "^16.1.5",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "18.3.1",
"react-chartjs-2": "^5.3.1",
"react-day-picker": "^9.14.0",
"react-dom": "18.3.1",
"react-photo-view": "^1.2.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tesseract.js": "^5.1.1",
"uuid": "^13.0.0",
"vaul": "^1.1.2",
"zustand": "^5.0.12"
},
"browserslist": [
"> 0.2%",
"last 2 versions",
"not dead",
"not op_mini all"
],
"engines": {
"node": ">=20.9.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@tanstack/eslint-plugin-query": "^5.97.0",
"autoprefixer": "^10.4.27",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.0.0",
"eslint-config-next": "^16.1.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.8",
"postcss-pxtorem": "^6.1.0",
"prettier": "^3.8.3",
"shadcn": "^3.8.5",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}