Files
file-one/package.json

48 lines
1.4 KiB
JSON
Raw Normal View History

2025-09-13 22:02:27 +01:00
{
"name": "bun-react-template",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot src/index.tsx",
"build": "bun build ./src/index.html --outdir=dist --sourcemap --target=browser --minify --define:process.env.NODE_ENV='\"production\"' --env='BUN_PUBLIC_*'",
"start": "NODE_ENV=production bun src/index.tsx"
},
"dependencies": {
2025-09-14 21:46:38 +00:00
"@convex-dev/workos": "^0.0.1",
2025-09-13 22:02:27 +01:00
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.87.4",
2025-09-13 22:02:27 +01:00
"@tanstack/react-router": "^1.131.41",
"@tanstack/react-table": "^8.21.3",
"@tanstack/router-devtools": "^1.131.42",
2025-09-14 21:46:38 +00:00
"@workos-inc/authkit-react": "^0.12.0",
2025-09-13 22:02:27 +01:00
"bun-plugin-tailwind": "latest",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.27.0",
2025-09-15 21:44:41 +00:00
"convex-helpers": "^0.1.104",
"jotai": "^2.14.0",
2025-09-13 22:02:27 +01:00
"lucide-react": "^0.544.0",
"next-themes": "^0.4.6",
"react": "^19",
"react-dom": "^19",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.8"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
2025-09-14 21:46:38 +00:00
"@tanstack/router-cli": "^1.131.41",
2025-09-13 22:02:27 +01:00
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19"
}
}