-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.41 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
{
"name": "subboost",
"version": "2.6.0",
"license": "AGPL-3.0-only",
"private": true,
"engines": {
"node": ">=22.13.0 <23 || >=24.0.0"
},
"workspaces": [
"packages/*",
"local"
],
"scripts": {
"dev": "npm --workspace @subboost/local run dev",
"build": "npm --workspace @subboost/local run build",
"test:unit": "vitest run",
"test:core": "vitest run --config vitest.core.config.ts",
"lint": "eslint local packages --max-warnings=0",
"check:local-app": "npm --prefix local run check",
"local:db:generate": "npm --prefix local run db:generate",
"local:lint": "npm --prefix local run lint",
"local:typecheck": "npm --prefix local run typecheck",
"local:build": "npm --prefix local run build"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.0",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.0",
"@subboost/config": "file:packages/config",
"@subboost/core": "file:packages/core",
"@subboost/server-core": "file:packages/server-core",
"@subboost/ui": "file:packages/ui",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^17.4.2",
"jose": "^6.2.3",
"js-yaml": "^4.2.0",
"lucide-react": "^1.17.0",
"next": "^16.2.7",
"peggy": "^5.1.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-remove-scroll-bar": "^2.3.8",
"tailwind-merge": "^3.6.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.19",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.7",
"postcss": "8.5.15",
"prisma": "^7.8.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"overrides": {
"@hono/node-server": "1.19.13",
"hono": "4.12.25",
"postcss": "8.5.15"
}
}