-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.46 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.46 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
{
"name": "tradinggoose-market",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*",
"uploads"
],
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "dotenv_config_path=.env node -r dotenv/config node_modules/next/dist/bin/next start",
"lint": "next lint",
"install:with-plugins": "node scripts/install-market-plugins.mjs --install",
"type-check": "tsc --noEmit",
"db:generate": "cd ./packages/db/ && drizzle-kit generate --config=./drizzle.config.ts",
"db:migrate": "cd ./packages/db/ && drizzle-kit migrate --config=./drizzle.config.ts"
},
"dependencies": {
"@azure/storage-blob": "^12.27.0",
"@hookform/resolvers": "^4.1.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.5",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.3",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "1.0.10",
"@tanstack/react-table": "^8.20.5",
"@vercel/blob": "^2.0.0",
"better-auth": "^1.4.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"csv-parse": "^5.5.6",
"csv-stringify": "^6.5.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.44.5",
"geist": "^1.5.1",
"ioredis": "^5.10.1",
"lucide-react": "^0.562.0",
"mime": "^4.0.4",
"next": "^16.1.0",
"next-themes": "^0.4.6",
"papaparse": "^5.4.1",
"postgres": "^3.4.5",
"prismjs": "^1.30.0",
"radix-ui": "^1.4.3",
"react": "18.2.0",
"react-big-calendar": "^1.13.2",
"react-day-picker": "^9.13.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.54.2",
"react-simple-code-editor": "^0.14.1",
"resend": "6.9.4",
"server-only": "^0.0.1",
"tailwind-merge": "^3.4.0",
"xlsx": "^0.18.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "25.2.1",
"@types/prismjs": "1.26.5",
"@types/react-big-calendar": "1.16.3",
"autoprefixer": "^10.4.23",
"drizzle-kit": "^0.31.4",
"eslint": "^9.13.0",
"eslint-config-next": "15.0.3",
"postcss": "^8.5.6",
"tailwindcss": "3.4.15",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.3"
}
}