- Standardize MessageRecord types — single source of truth from @bete/shared - Clean up config: remove unused GUILD_ID/TEXT_GUILD_ID/TEXT_CHANNEL_ID, fix WEBSERVER_PORT default (3001), remove default admin password - Move mascot_chat_messages table to Drizzle schema with proper migration - Remove runtime DDL (CREATE TABLE IF NOT EXISTS) from mascot-chat repository - Remove phantom analytics/ module from documentation - Add better-sqlite3 dependency to root devDependencies - Replace 'as any' casts with proper type assertions across AI moderation - Add error logging to silent catch blocks in LLM client - Apply Biome formatting and import organization Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "@gmw/frontend",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite --host 0.0.0.0",
|
|
"build": "tsc --noEmit && NODE_NO_WARNINGS=1 vite build",
|
|
"preview": "vite preview --host 0.0.0.0 --port 3000",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "biome check --diagnostic-level=error src/",
|
|
"format": "biome format --write src/"
|
|
},
|
|
"dependencies": {
|
|
"@bete/shared": "workspace:*",
|
|
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
"@radix-ui/react-slot": "^1.2.4",
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
"@react-three/drei": "^9.6.1",
|
|
"@react-three/fiber": "^9.6.1",
|
|
"@tanstack/react-query": "^5.100.14",
|
|
"clsx": "^2.1.1",
|
|
"framer-motion": "^12.4.0",
|
|
"gsap": "^3.12.7",
|
|
"lucide-react": "^1.16.0",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6",
|
|
"tailwind-merge": "^3.6.0",
|
|
"three": "^0.174.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "latest",
|
|
"@tailwindcss/postcss": "^4.3.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@types/three": "^0.184.1",
|
|
"@vitejs/plugin-react": "^6.0.2",
|
|
"autoprefixer": "^10.5.0",
|
|
"postcss": "^8.5.14",
|
|
"tailwindcss": "^4.3.0",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^8.0.13"
|
|
}
|
|
}
|