-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 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
{
"name": "openbooklm",
"version": "0.1.0",
"private": true,
"scripts": {
"logs:backend": "kubectl logs -f -n openbooklm -c backend $(kubectl get pods -n openbooklm -l app=openbooklm -o jsonpath='{.items[0].metadata.name}')",
"logs:frontend": "kubectl logs -f -n openbooklm -c frontend $(kubectl get pods -n openbooklm -l app=openbooklm -o jsonpath='{.items[0].metadata.name}')",
"k8s:restart": "kubectl rollout restart deployment openbooklm -n openbooklm",
"k8s:error": "kubectl describe pod -n openbooklm $(kubectl get pods -n openbooklm | grep CreateContainerConfigError | awk '{print $1}')",
"k8s:events": "kubectl get events -n openbooklm --sort-by='.lastTimestamp'",
"k8s:logs:error": "kubectl logs -p -n openbooklm $(kubectl get pods -n openbooklm | grep CreateContainerConfigError | awk '{print $1}')",
"k8s:containers": "./scripts/view-containers.sh",
"dev": "next dev",
"build": "SKIP_ENV_VALIDATION=1 next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"db:connect": "./scripts/db-connect.sh"
},
"dependencies": {
"@better-auth/prisma-adapter": "^1.5.3",
"@cerebras/cerebras_cloud_sdk": "^1.16.0",
"@prisma/client": "6.3.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"better-auth": "^1.5.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^4.1.0",
"fns": "^1.0.0",
"googleapis": "^144.0.0",
"ioredis": "^5.4.2",
"lucide-react": "^0.577.0",
"nanoid": "^5.1.0",
"next": "16.1.6",
"next-themes": "^0.4.6",
"perf_hooks": "^0.0.1",
"prisma": "6.3.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-dropzone": "^14.3.5",
"react-markdown": "^9.0.3",
"sonner": "^1.4.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20.17.16",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "16.1.6",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"wait-on": "^8.0.2"
},
"prisma": {
"seed": "npx ts-node --compiler-options '{\"module\":\"CommonJS\"}' prisma/seed.ts"
}
}