Skip to content

Commit

Permalink
fix: returning to sanity p1 - removing all xpra and HU bs, and bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
IncognitoTGT committed Oct 28, 2024
1 parent 0fa8b8d commit 10895a6
Show file tree
Hide file tree
Showing 32 changed files with 3,618 additions and 3,720 deletions.
6 changes: 2 additions & 4 deletions next.config.mjs → next.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
// @ts-check
import { execSync } from "node:child_process";
import NextBundleAnalyzer from "@next/bundle-analyzer";
/** @type {import('next').NextConfig} */
const nextConfig = {
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
Expand All @@ -21,7 +20,6 @@ const nextConfig = {
experimental: {
ppr: true,
typedRoutes: true,
instrumentationHook: true,
webpackBuildWorker: true,
reactCompiler: true,
after: true,
Expand Down
52 changes: 28 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"name": "stardust",
"version": "1.0.0",
"version": "1.0-rc.0",
"private": true,
"type": "module",
"scripts": {
"postinstall": "jq '.exports[\".\"].types = (\"./\" + .types)' ./node_modules/xpra-html5-client/package.json > tmp.json && mv tmp.json ./node_modules/xpra-html5-client/package.json",
"dev": "CONFIG=$(cat .config/config.json) tsx server.ts",
"build": "CONFIG=$(cat .config/config.json) next build",
"start": "NODE_ENV=production CONFIG=$(cat .config/config.json) tsx server.ts",
Expand All @@ -16,25 +15,25 @@
},
"dependencies": {
"@marsidev/react-turnstile": "^0.7.2",
"@next/bundle-analyzer": "^14.2.3",
"@novnc/novnc": "^1.4.0",
"@next/bundle-analyzer": "15.0.1",
"@novnc/novnc": "^1.5.0",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"@tanstack/react-table": "8.19.3",
"argon2": "^0.40.3",
"babel-plugin-react-compiler": "0.0.0-experimental-696af53-20240625",
Expand All @@ -44,25 +43,23 @@
"dockerode": "^4.0.2",
"drizzle-orm": "^0.32.0",
"drizzle-zod": "^0.5.1",
"http-proxy-middleware": "^3.0.0",
"input-otp": "^1.2.4",
"lucide-react": "^0.358.0",
"next": "15.0.0-rc.0",
"next": "15.0.2-canary.9",
"next-auth": "5.0.0-beta.18",
"next-themes": "^0.3.0",
"node-loader": "^2.0.0",
"otplib": "^12.0.1",
"postgres": "^3.4.4",
"react": "19.0.0-rc-f6cce072-20240723",
"react-dom": "19.0.0-rc-f6cce072-20240723",
"server-only": "^0.0.1",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"sharp": "^0.33.3",
"sonner": "^1.4.41",
"swr": "^2.2.5",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.9.1",
"xpra-html5-client": "^2.3.0",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
Expand All @@ -71,13 +68,20 @@
"@types/node": "^20.11.30",
"@types/novnc__novnc": "^1.3.5",
"@types/pg": "^8.11.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@types/ws": "^8.5.12",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.23.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1",
"ts-json-schema-generator": "^2.3.0",
"typescript": "^5.4.3"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}
Loading

0 comments on commit 10895a6

Please sign in to comment.