move to bun

This commit is contained in:
Mona Mayrhofer 2024-11-22 13:48:00 +01:00
parent 00e9885832
commit a75e485e7f
No known key found for this signature in database
GPG key ID: 5C83114FA383C6A0
6 changed files with 20 additions and 3821 deletions

BIN
bun.lockb Executable file

Binary file not shown.

8
package.json Normal file
View file

@ -0,0 +1,8 @@
{
"name": "TODO-template-name",
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"dependencies": {}
}

View file

@ -1,38 +1,29 @@
{ {
"name": "tdkdb-rxjs", "name": "TODO-template-web",
"private": true, "private": true,
"version": "0.0.0", "version": "0.0.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "bunx --bun vite",
"build": "tsc -b && vite build", "build": "tsc -b && vite build",
"lint": "biome lint . && stylelint **/*.css", "lint": "biome lint . && stylelint **/*.css",
"preview": "vite preview", "preview": "vite preview",
"test": "vitest" "test": "vitest"
}, },
"dependencies": { "dependencies": {
"@emotion/react": "11.13.3", "effect": "=3.10.14",
"@emotion/styled": "11.13.0",
"@fontsource/roboto": "^5.1.0",
"@mui/icons-material": "6.1.1",
"@mui/lab": "6.0.0-beta.10",
"@mui/material": "6.1.1",
"observable-hooks": "=4.2.4",
"react": "=18.3.1", "react": "=18.3.1",
"react-dom": "=18.3.1", "react-dom": "=18.3.1",
"react-hook-form": "7.53.0", "react-hook-form": "=7.53.0",
"react-router-dom": "6.26.2" "react-router-dom": "=6.26.2",
"vite-plugin-top-level-await": "=1.4.4"
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "=1.9.2", "@biomejs/biome": "=1.9.2",
"@eslint/js": "=9.10.0", "@types/lodash": "4.17.12",
"@types/react": "=18.3.8", "@types/react": "=18.3.8",
"@types/react-dom": "=18.3.0", "@types/react-dom": "=18.3.0",
"@vitejs/plugin-react": "=4.3.1", "@vitejs/plugin-react": "=4.3.1",
"eslint": "=9.10.0",
"eslint-plugin-react-hooks": "=5.1.0-rc.0",
"eslint-plugin-react-refresh": "=0.4.12",
"globals": "=15.9.0",
"meow": "=9.0.0", "meow": "=9.0.0",
"stylelint": "=16.9.0", "stylelint": "=16.9.0",
"stylelint-config-standard": "=36.0.1", "stylelint-config-standard": "=36.0.1",

3799
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -1,2 +0,0 @@
packages:
- "packages/*"

View file

@ -1,8 +1,9 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2020", "target": "ES2022",
"useDefineForClassFields": true, "useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"], "lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vitest/importMeta"],
"module": "ESNext", "module": "ESNext",
"skipLibCheck": true, "skipLibCheck": true,
@ -23,8 +24,8 @@
"noImplicitReturns": true, "noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true, "noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true, "noUncheckedIndexedAccess": true,
"noUnusedLocals": true, "noUnusedLocals": false,
"noUnusedParameters": true, "noUnusedParameters": false,
"checkJs": true, "checkJs": true,