- Created home.css with comprehensive styles for the home page layout, including typography, buttons, and responsive design adjustments. - Created landing.css to style the landing page, focusing on typography, layout, and responsive behavior for various screen sizes.
43 lines
1.6 KiB
JSON
43 lines
1.6 KiB
JSON
{
|
|
"name": "minabot",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development bun --env-file=.env --env-file=.env.development scripts/migrate.ts && NODE_ENV=development bun --env-file=.env --env-file=.env.development --hot src/index.ts",
|
|
"start": "NODE_ENV=production bun --env-file=.env --env-file=.env.production scripts/migrate.ts && NODE_ENV=production bun --env-file=.env --env-file=.env.production scripts/start.ts",
|
|
"build": "bun run build.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"db:generate": "NODE_ENV=development bun --env-file=.env --env-file=.env.development x --bun drizzle-kit generate",
|
|
"db:migrate": "NODE_ENV=development bun --env-file=.env --env-file=.env.development scripts/migrate.ts",
|
|
"test": "bun test",
|
|
"db:migrate:production": "NODE_ENV=production bun --env-file=.env --env-file=.env.production scripts/migrate.ts",
|
|
"test:coverage": "bun test --coverage",
|
|
"test:smoke": "bun run build && bun scripts/api-smoke.ts"
|
|
},
|
|
"dependencies": {
|
|
"@nivo/calendar": "^0.99.0",
|
|
"bun-plugin-tailwind": "^0.1.2",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"drizzle-orm": "^0.45.2",
|
|
"hono": "^4.13.5",
|
|
"lucide-react": "^1",
|
|
"react": "^19",
|
|
"react-dom": "^19",
|
|
"react-router": "^8.3.1",
|
|
"tailwind-merge": "^3.3.1",
|
|
"tw-animate-css": "^1.4.0",
|
|
"zod": "^4.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"drizzle-kit": "^0.31.10",
|
|
"happy-dom": "^20.14.0",
|
|
"tailwindcss": "^4.1.11",
|
|
"typescript": "^7.0.2"
|
|
}
|
|
}
|