-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "buttonz",
"version": "1.0.0",
"description": "Communication platform for all users using Game Forge Studio.",
"type": "module",
"main": "server/index.ts",
"scripts": {
"dev": "tsx server/index.ts",
"dev:server": "tsx server/index.ts",
"dev:client": "vite",
"build": "vite build",
"start": "tsx server/index.ts",
"check": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devcodesfr/buttonz.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/devcodesfr/buttonz/issues"
},
"homepage": "https://github.com/devcodesfr/buttonz#readme",
"dependencies": {
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.100.5",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"drizzle-zod": "^0.8.3",
"express": "^5.2.1",
"express-session": "^1.19.0",
"lucide-react": "^1.11.0",
"postgres": "^3.4.9",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.6",
"@types/express-session": "^1.19.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.5.0",
"postcss": "^8.5.12",
"tailwindcss": "^3.4.19",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^8.0.10"
}
}