This commit is contained in:
Jamie Pine 2022-04-17 12:30:25 -07:00
parent 70de8ab1b1
commit cc9f646c3c
7 changed files with 153 additions and 139 deletions

View file

@ -4,20 +4,6 @@
"main": "index.js",
"license": "MIT",
"private": true,
"devDependencies": {
"@tauri-apps/cli": "^1.0.0-rc.8",
"@types/babel-core": "^6.25.7",
"@types/byte-size": "^8.1.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/tailwindcss": "^3.0.10",
"concurrently": "^7.1.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
},
"scripts": {
"vite": "vite",
"dev": "concurrently \"pnpm tauri dev\" \"vite\"",
@ -28,51 +14,32 @@
"react-virtualized": "patch:react-virtualized@9.22.3#./path/to/react-virtualized-9.22.3.patch"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@radix-ui/react-dialog": "^0.1.7",
"@radix-ui/react-dropdown-menu": "^0.1.6",
"@radix-ui/react-icons": "^1.1.0",
"@radix-ui/react-progress": "^0.1.4",
"@radix-ui/react-slider": "^0.1.4",
"@sd/client": "workspace:*",
"@sd/core": "workspace:*",
"@sd/interface": "workspace:*",
"@sd/ui": "workspace:*",
"@tauri-apps/api": "^1.0.0-rc.3",
"@types/pretty-bytes": "^5.2.0",
"@types/react-table": "^7.7.10",
"@types/react-virtualized": "^9.21.21",
"autoprefixer": "^10.4.4",
"byte-size": "^8.1.0",
"clsx": "^1.1.1",
"immer": "^9.0.12",
"jotai": "^1.6.2",
"moment": "^2.29.2",
"phosphor-react": "^1.4.1",
"pretty-bytes": "^6.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-dropzone": "^12.0.4",
"react-error-boundary": "^3.1.4",
"react-hotkeys-hook": "^3.4.4",
"react-json-view": "^1.21.3",
"react-portal": "^4.2.2",
"react-query": "^3.34.19",
"react-router": "6.3.0",
"react-router-dom": "6.3.0",
"react-spline": "^1.2.1",
"react-transition-group": "^4.4.2",
"react-virtuoso": "^2.9.0",
"rooks": "^5.11.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"concurrently": "^7.1.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3",
"sass": "^1.50.0",
"tailwindcss": "^3.0.23",
"vite": "^2.9.1",
"vite-plugin-filter-replace": "^0.1.9",
"vite-plugin-react-svg": "^0.2.0",
"vite-tsconfig-paths": "^3.4.1",
"@vitejs/plugin-react-refresh": "^1.3.6",
"zustand": "^3.7.2"
"@tauri-apps/cli": "^1.0.0-rc.8",
"@types/babel-core": "^6.25.7",
"@types/byte-size": "^8.1.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/tailwindcss": "^3.0.10"
}
}

View file

@ -1 +0,0 @@
module.exports = require('@sd/ui/style/postcss.config');

View file

@ -1 +0,0 @@
module.exports = require('@sd/ui/style/tailwind.config');

View file

@ -6,6 +6,7 @@
"license": "MIT",
"private": true,
"scripts": {
"vite": "vite",
"build": "vite build"
},
"resolutions": {

7
packages/interface/src/vite-env.d.ts vendored Normal file
View file

@ -0,0 +1,7 @@
/// <reference types="vite/client" />
declare interface ImportMetaEnv {
VITE_OS: string;
}
declare module '@babel/core' {}

View file

@ -11,7 +11,6 @@
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"outDir": "dist",

File diff suppressed because it is too large Load diff