forked from vas3k/TaxHacker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.78 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.78 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
88
89
90
91
92
93
94
95
96
97
{
"name": "taxhacker",
"version": "0.5.5",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev -p 7331 --turbopack",
"build": "prisma generate && next build",
"start": "node node_modules/prisma/build/index.js migrate deploy && node server.js",
"lint": "next lint",
"test": "vitest run",
"coverage": "vitest run --coverage",
"backfill:business-bank-details": "node ./scripts/backfill-business-bank-details.js",
"postinstall": "prisma generate"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@fast-csv/format": "^5.0.5",
"@fast-csv/parse": "^5.0.5",
"@langchain/core": "^0.3.80",
"@langchain/google-genai": "^0.2.18",
"@langchain/mistralai": "^0.2.3",
"@langchain/openai": "^0.6.17",
"@prisma/client": "^6.19.3",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-pdf/renderer": "^4.4.0",
"@sentry/nextjs": "^9.47.1",
"@types/mime-types": "^2.1.4",
"@types/sharp": "^0.31.1",
"bcryptjs": "^3.0.3",
"better-auth": "^1.6.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "3.6.0",
"jszip": "3.10.1",
"langchain": "^0.3.37",
"lucide-react": "^0.475.0",
"mime-types": "^3.0.2",
"next": "^15.5.15",
"next-themes": "^0.4.6",
"pdf2pic": "^3.2.0",
"qrcode": "^1.5.4",
"razorpay": "^2.9.6",
"react": "^19.2.4",
"react-day-picker": "^8.10.1",
"react-dom": "^19.2.4",
"react-resizable-panels": "^2.1.9",
"resend": "^4.8.0",
"sharp": "^0.33.5",
"slugify": "^1.6.9",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"zod": "3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^20.19.39",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.3",
"eslint": "^9.39.4",
"eslint-config-next": "15.1.7",
"postcss": "^8.5.9",
"prisma": "^6.19.3",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^8.0.7",
"vitest": "4.1.3"
},
"overrides": {
"react-day-picker": {
"react": "^19.0.0"
},
"vite": ">=8.0.5"
},
"pnpm": {
"overrides": {
"langsmith": ">=0.4.6",
"axios": ">=1.15.0"
}
}
}