-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "@conductor/panel",
"private": true,
"scripts": {
"build": "next build --turbo",
"check": "biome check --write . && tsc --noEmit",
"clean": "rm -rf .next",
"codegen": "panda codegen",
"dev": "bun run clean && bun run codegen && PORT=${PANEL_PORT:-3000} next dev --turbo",
"i18n:extract": "tsx scripts/extract-messages.ts",
"prepare": "bun run codegen",
"start": "next start"
},
"dependencies": {
"@better-fetch/fetch": "^1.1.18",
"@conductor/api": "workspace:*",
"@conductor/auth": "workspace:*",
"@hookform/resolvers": "^5.2.1",
"@t3-oss/env-nextjs": "^0.13.8",
"@tanstack/react-query": "^5.84.1",
"@trpc/client": "^11.4.4",
"@trpc/react-query": "^11.4.4",
"better-auth": "^1.3.4",
"lucide-react": "^0.536.0",
"next": "15.4.7",
"next-intl": "^4.3.4",
"next-themes": "^0.4.6",
"pino": "^9.7.0",
"pino-pretty": "^13.1.1",
"radix-ui": "^1.4.2",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-hook-form": "^7.62.0",
"server-only": "^0.0.1",
"superjson": "^2.2.2",
"ua-parser-js": "^2.0.4",
"url-join": "^5.0.0",
"zod": "^4.0.15",
"zustand": "^5.0.7"
},
"devDependencies": {
"@babel/parser": "^7.28.0",
"@babel/traverse": "^7.28.0",
"@biomejs/biome": "^2.1.3",
"@pandacss/dev": "^1.0.1",
"@types/babel__traverse": "^7.28.0",
"@types/node": "^24.2.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"glob": "^11.0.3",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}