-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
203 lines (203 loc) · 7.73 KB
/
package.json
File metadata and controls
203 lines (203 loc) · 7.73 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
{
"name": "@e2b/dashboard",
"version": "1.0.0",
"private": true,
"scripts": {
"<<<<<<< Next.js": "",
"dev": "bun scripts:check-app-env && next dev --turbopack | pino-pretty --colorize",
"build": "next build --turbopack",
"start": "next start | pino-pretty --colorize",
"preview": "next build --turbopack && next start | pino-pretty --colorize",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome check --write --linter-enabled=false --assist-enabled=true . --max-diagnostics none",
"format:check": "biome check --linter-enabled=false --assist-enabled=true .",
"check": "biome check .",
"prebuild": "bun scripts:check-app-env",
"<<<<<<< Development Tools": "",
"scan:local": "bunx react-scan@latest localhost:3000",
"<<<<<<< Database": "",
"db:migrations:create": "bun run scripts:create-migration",
"db:migrations:apply": "bun run scripts:apply-migrations",
"<<<<<<< Gen": "",
"generate:infra": "bunx openapi-typescript ./spec/openapi.infra.yaml -o ./src/core/shared/contracts/infra-api.types.ts",
"generate:dashboard-api": "bunx openapi-typescript ./spec/openapi.dashboard-api.yaml -o ./src/core/shared/contracts/dashboard-api.types.ts",
"generate:argus": "bunx openapi-typescript ./spec/openapi.argus.yaml -o ./src/core/shared/contracts/argus-api.types.ts",
"generate:supabase": "bunx supabase@latest gen types typescript --schema public > src/core/shared/contracts/database.types.ts --project-id $SUPABASE_PROJECT_ID",
"<<<<<<< Scripts": "",
"scripts:check-app-env": "bun scripts/check-app-env.ts",
"scripts:check-e2e-env": "bun scripts/check-e2e-env.ts",
"scripts:check-all-env": "bun scripts:check-app-env && bun scripts:check-e2e-env",
"scripts:create-migration": "bun scripts/create-migration.ts",
"<<<<<<< Development": "",
"shad": "bunx shadcn@canary",
"test:dev:traffic": "vitest run src/__test__/development/traffic.test.ts",
"test:dev:build": "vitest run src/__test__/development/template-build.test.ts",
"test:dev:events": "vitest run src/__test__/development/sandbox-events.test.ts",
"clean": "rm -rf .next node_modules && bun install",
"<<<<<<< Testing": "",
"test:run": "bun scripts:check-all-env && vitest run",
"test:integration": "bun scripts:check-app-env && vitest run src/__test__/integration/",
"test:unit": "vitest run src/__test__/unit/",
"test:e2e": "bun scripts:check-all-env && vitest run src/__test__/e2e/",
"test:watch": "bun scripts:check-all-env && vitest",
"test:ui": "bun scripts:check-all-env && vitest --ui",
"test:ui:integration": "bun scripts:check-app-env && vitest --ui src/__test__/integration/"
},
"dependencies": {
"@google-cloud/storage": "^7.15.2",
"@hookform/resolvers": "^5.2.2",
"@marsidev/react-turnstile": "^1.4.1",
"@next-safe-action/adapter-react-hook-form": "^2.0.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.62.1",
"@opentelemetry/exporter-logs-otlp-http": "^0.203.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.203.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.203.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-logs": "^0.203.0",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-node": "^0.203.0",
"@opentelemetry/sdk-trace-node": "^2.0.1",
"@opentelemetry/semantic-conventions": "^1.36.0",
"@radix-ui/react-avatar": "^1.1.4",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slider": "^1.2.4",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.2.0",
"@radix-ui/themes": "^3.2.1",
"@shikijs/core": "3.2.1",
"@shikijs/rehype": "3.2.1",
"@shikijs/themes": "3.2.1",
"@shikijs/twoslash": "3.2.1",
"@stripe/react-stripe-js": "^5.3.0",
"@stripe/stripe-js": "^8.2.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.48.1",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/react-query": "^5.90.7",
"@tanstack/react-query-devtools": "^5.91.1",
"@tanstack/react-table": "^8.20.6",
"@tanstack/react-virtual": "^3.13.12",
"@team-plain/typescript-sdk": "^5.11.0",
"@theguild/remark-mermaid": "^0.2.0",
"@trpc/client": "^11.7.1",
"@trpc/react-query": "^11.7.1",
"@trpc/server": "^11.7.1",
"@trpc/tanstack-react-query": "^11.7.1",
"@types/mdx": "^2.0.13",
"@types/micromatch": "^4.0.9",
"@vercel/analytics": "^1.5.0",
"@vercel/kv": "^3.0.0",
"@vercel/otel": "^1.13.0",
"@vercel/speed-insights": "^1.2.0",
"ansis": "^3.17.0",
"cheerio": "^1.0.0",
"chrono-node": "^2.8.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"deepmerge": "^4.3.1",
"e2b": "^2.14.0",
"echarts": "^6.0.0",
"echarts-for-react": "^3.0.2",
"fast-xml-parser": "^5.3.5",
"file-type": "^21.3.0",
"geist": "^1.3.1",
"immer": "^10.1.1",
"lucide-react": "^0.525.0",
"micromatch": "^4.0.8",
"motion": "^12.18.1",
"nanoid": "^5.0.9",
"next": "16.1.5",
"next-safe-action": "^8.0.11",
"next-themes": "^0.4.6",
"nuqs": "^2.7.0",
"openapi-fetch": "^0.14.0",
"pathe": "^2.0.3",
"pino": "^9.7.0",
"postgres": "^3.4.5",
"posthog-js": "^1.268.1",
"react": "19.2.4",
"react-day-picker": "^9.9.0",
"react-dom": "19.2.4",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.66.0",
"react-icons": "^5.4.0",
"react-shiki": "^0.5.2",
"react-svg": "^16.3.0",
"recharts": "^2.15.1",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"remark-mermaid": "^0.2.0",
"semver": "^7.7.2",
"serialize-error": "^12.0.0",
"shiki": "3.2.1",
"sonner": "^2.0.7",
"styled-components": "^6.1.19",
"superjson": "^2.2.5",
"swr": "^2.3.4",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.3.6",
"usehooks-ts": "^3.1.0",
"vaul": "^1.1.2",
"zod": "^4.1.11",
"zod-form-data": "^3.0.1",
"zustand": "^5.0.3",
"zustand-computed": "^2.0.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@bufbuild/buf": "^1.54.0",
"@bufbuild/protobuf": "^2.5.2",
"@bufbuild/protoc-gen-es": "^2.5.2",
"@connectrpc/protoc-gen-connect-es": "^1.6.1",
"@tailwindcss/postcss": "^4.0.15",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/bun": "^1.2.5",
"@types/node": "22.10.10",
"@types/pg": "^8.11.11",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.3",
"@types/semver": "^7.7.0",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/ui": "3.0.7",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "^19.1.0-rc.2",
"drizzle-kit": "^0.30.3",
"node-loader": "^2.1.0",
"openapi-typescript": "^7.8.0",
"pino-pretty": "^13.1.1",
"postcss": "8.5.1",
"postcss-import": "^16.1.0",
"react-scan": "^0.4.3",
"server-cli-only": "^0.3.2",
"tailwindcss": "^4.0.15",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "5.7.3",
"vitest": "^3.0.7"
},
"resolutions": {
"whatwg-url": "^13",
"@shikijs/themes": "2.3.2",
"shiki": "2.3.2",
"@shikijs/core": "2.3.2",
"@nodelib/fs.scandir": "2.1.5",
"@nodelib/fs.stat": "2.0.5"
},
"packageManager": "bun@1.2.0"
}