mirror of
https://github.com/Dokploy/templates.git
synced 2026-04-28 11:08:37 -05:00
Added bun.lock file to lock versions of project dependencies, ensuring reproducible builds and consistent environments across different setups using Bun as the package manager.
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"name": "my-app",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "^6.19.1",
|
|
"@codemirror/lang-json": "^6.0.2",
|
|
"@codemirror/lang-yaml": "^6.1.2",
|
|
"@codemirror/language": "^6.11.3",
|
|
"@codemirror/legacy-modes": "6.4.0",
|
|
"@codemirror/view": "6.29.0",
|
|
"@iarna/toml": "^2.2.5",
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
"@radix-ui/react-label": "^2.1.7",
|
|
"@radix-ui/react-popover": "^1.1.15",
|
|
"@radix-ui/react-slot": "^1.2.3",
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
"@tailwindcss/vite": "^4.1.16",
|
|
"@uiw/codemirror-theme-github": "^4.25.2",
|
|
"@uiw/react-codemirror": "^4.25.2",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "1.0.0",
|
|
"copy-to-clipboard": "^3.3.3",
|
|
"lucide-react": "^0.479.0",
|
|
"next-themes": "^0.4.6",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"react-router-dom": "^7.9.4",
|
|
"sonner": "^2.0.7",
|
|
"tailwind-merge": "^3.3.1",
|
|
"tailwindcss": "^4.1.16",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"vite-plugin-static-copy": "^2.3.2",
|
|
"yaml": "2.7.1",
|
|
"zustand": "^5.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.19.23",
|
|
"@types/react": "^19.2.2",
|
|
"@types/react-dom": "^19.2.2",
|
|
"@vitejs/plugin-react": "^4.7.0",
|
|
"globals": "^15.15.0",
|
|
"typescript": "~5.7.3",
|
|
"vite": "^6.4.1"
|
|
}
|
|
}
|