-
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) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.15 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": "static-buffet",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development tsx server/index.ts",
"build": "vite build --minify esbuild && esbuild server/index.ts --platform=node --packages=external --bundle --format=esm --outdir=dist --minify",
"build:vercel": "vite build",
"start": "NODE_ENV=production node dist/index.js",
"check": "tsc"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"@jridgewell/trace-mapping": "^0.3.25",
"@radix-ui/react-accordion": "^1.2.4",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-collapsible": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slider": "^1.2.4",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.1.4",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.2.0",
"@tanstack/react-query": "^5.60.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^3.6.0",
"dotenv": "^17.4.2",
"express": "^4.22.2",
"express-rate-limit": "^8.6.0",
"lucide-react": "^0.453.0",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"wouter": "^3.3.5",
"ws": "^8.21.1",
"zod": "^3.24.2",
"zod-validation-error": "^3.4.0",
"zustand": "^5.0.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/express": "4.17.21",
"@types/node": "^20.19.43",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.4.20",
"esbuild": "^0.28.1",
"postcss": "^8.5.20",
"tailwindcss": "^3.4.17",
"tsx": "^4.23.1",
"typescript": "5.6.3",
"vite": "^7.3.6"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
}
}