This commit is contained in:
Benjamin Toby 2025-03-27 07:46:12 +01:00
parent 8762e2da8d
commit 07120eda6b
2 changed files with 29 additions and 28 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -1,30 +1,31 @@
{ {
"name": "new-personal-site", "name": "new-personal-site",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"lint": "next lint" "lint": "next lint"
}, },
"dependencies": { "dependencies": {
"@moduletrace/buncid": "^1.0.7", "@moduletrace/buncid": "^1.0.7",
"@moduletrace/datasquirel": "^2.7.4", "@moduletrace/datasquirel": "^2.7.4",
"lodash": "^4.17.21", "@moduletrace/twui": "file:./components/lib",
"lucide-react": "^0.462.0", "lodash": "^4.17.21",
"next": "15.0.3", "lucide-react": "^0.462.0",
"react": "19.0.0-rc-66855b96-20241106", "next": "15.0.3",
"react-dom": "19.0.0-rc-66855b96-20241106", "react": "19.0.0-rc-66855b96-20241106",
"tailwind-merge": "^2.5.5" "react-dom": "19.0.0-rc-66855b96-20241106",
}, "tailwind-merge": "^2.5.5"
"devDependencies": { },
"@types/lodash": "^4.17.13", "devDependencies": {
"@types/node": "^20", "@types/lodash": "^4.17.13",
"@types/react": "^18", "@types/node": "^20",
"@types/react-dom": "^18", "@types/react": "^18",
"postcss": "^8", "@types/react-dom": "^18",
"tailwindcss": "^3.4.1", "postcss": "^8",
"typescript": "^5" "tailwindcss": "^3.4.1",
} "typescript": "^5"
}
} }