-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.22 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "altstack",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"tools/*"
],
"type": "module",
"scripts": {
"db:down": "docker compose down postgres",
"db:generate": "vp run --filter @altstack/db db:generate",
"db:migrate": "vp run --filter @altstack/db db:migrate",
"db:push": "vp run --filter @altstack/db db:push",
"db:seed": "vp run --filter @altstack/db db:seed",
"db:start": "docker compose up -d postgres",
"db:stop": "docker compose stop postgres",
"db:studio": "vp run --filter @altstack/db db:studio",
"db:watch": "docker compose up postgres",
"dev:dashboard": "vp run dashboard#dev",
"dev:server": "vp run server#dev",
"dev:web": "vp run web#dev",
"prepare": "vp config",
"ready": "vp check && vp run -r test && vp run -r build"
},
"devDependencies": {
"@altstack/config": "workspace:*",
"@tanstack/eslint-plugin-query": "^5.101.3",
"@tanstack/eslint-plugin-router": "^1.162.0",
"@types/bun": "catalog:",
"eslint-plugin-react-hooks": "^7.1.1",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plus": "catalog:"
},
"overrides": {
"vite": "catalog:"
},
"devEngines": {
"packageManager": {
"name": "bun",
"version": "1.4.0",
"onFail": "download"
}
},
"engines": {
"node": ">=22.18.0"
},
"catalog": {
"@base-ui/react": "^1.6.0",
"@fontsource-variable/inter": "^5.3.0",
"@orpc/client": "^2.0.0-beta.31",
"@orpc/contract": "^2.0.0-beta.31",
"@orpc/evlog": "^2.0.0-beta.31",
"@orpc/json-schema": "^2.0.0-beta.31",
"@orpc/openapi": "^2.0.0-beta.31",
"@orpc/server": "^2.0.0-beta.31",
"@orpc/tanstack-query": "^2.0.0-beta.31",
"@orpc/zod": "^2.0.0-beta.31",
"@rolldown/plugin-babel": "^0.2.3",
"@tabler/icons-react": "^3.45.0",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/devtools-vite": "^0.8.3",
"@tanstack/react-devtools": "^0.10.9",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-query-devtools": "^5.101.4",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-router-ssr-query": "^1.167.1",
"@tanstack/react-start": "^1.168.34",
"@tanstack/router-cli": "^1.167.21",
"@tanstack/router-plugin": "^1.168.23",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.4.0",
"@types/node": "^26.1.2",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"babel-plugin-react-compiler": "^1.0.0",
"better-auth": "^1.7.1",
"bumpp": "^12.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"drizzle-kit": "^1.0.0-rc.4",
"drizzle-orm": "^1.0.0-rc.4",
"evlog": "^2.27.1",
"hono": "^4.13.5",
"jsdom": "^28.1.0",
"limax": "^4.2.3",
"lucide-react": "^1.25.0",
"next-themes": "^0.4.6",
"nitro": "^3.0.260610-beta",
"octokit": "^5.0.5",
"pg": "^8.22.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"reicon-react": "^1.1.302",
"shadcn": "^4.13.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^7.0.2",
"vite": "npm:@voidzero-dev/vite-plus-core@0.3.0",
"vite-plus": "0.3.0",
"zod": "^4.5.4"
}
}