-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3 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
{
"name": "ui",
"version": "1.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "rsbuild dev",
"dev:ssr": "PORT=3003 BUILD_TARGET=server rsbuild dev",
"build": "bun run build:client && bun run build:ssr",
"deploy": "DEPLOY=true bun run build",
"build:client": "bun run generate-metadata && BUILD_TARGET=client rsbuild build",
"build:ssr": "BUILD_TARGET=server rsbuild build",
"generate-metadata": "bun run ./scripts/generate-metadata.ts",
"preview": "rsbuild preview",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist/types"
},
"dependencies": {
"@hot-labs/near-connect": "catalog:",
"@orpc/client": "^1.12.3",
"@orpc/contract": "^1.13.4",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@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-navigation-menu": "^1.2.14",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@tanstack/react-devtools": "^0.10.1",
"@tanstack/react-query": "catalog:",
"@tanstack/react-query-devtools": "^5.91.1",
"@tanstack/react-router": "catalog:",
"@tanstack/react-router-devtools": "^1.139.14",
"@tanstack/react-table": "^8.21.3",
"better-auth": "catalog:",
"better-near-auth": "catalog:",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.37.0",
"lucide-react": "^0.544.0",
"near-kit": "catalog:",
"near-social-js": "^2.0.4",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "catalog:",
"react-dom": "catalog:",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"zustand": "^5.0.9"
},
"peerDependencies": {
"@hot-labs/near-connect": "catalog:",
"@tanstack/react-query": "catalog:",
"@tanstack/react-router": "catalog:",
"near-kit": "catalog:",
"react": "catalog:",
"react-dom": "catalog:"
},
"devDependencies": {
"@module-federation/enhanced": "catalog:",
"@module-federation/node": "catalog:",
"@module-federation/rsbuild-plugin": "catalog:",
"@rsbuild/core": "^1.6.12",
"@rsbuild/plugin-react": "^1.4.2",
"@tailwindcss/postcss": "^4.1.17",
"@tanstack/router-plugin": "^1.139.14",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"every-plugin": "2.0.0",
"everything-dev": "workspace:*",
"jsdom": "^29.0.2",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.17",
"typescript": "catalog:",
"vitest": "catalog:",
"zephyr-rsbuild-plugin": "0.1.4"
}
}