GT AI OS Community Edition v2.0.33
Security hardening release addressing CodeQL and Dependabot alerts: - Fix stack trace exposure in error responses - Add SSRF protection with DNS resolution checking - Implement proper URL hostname validation (replaces substring matching) - Add centralized path sanitization to prevent path traversal - Fix ReDoS vulnerability in email validation regex - Improve HTML sanitization in validation utilities - Fix capability wildcard matching in auth utilities - Update glob dependency to address CVE - Add CodeQL suppression comments for verified false positives 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
93
apps/tenant-app/package.json
Normal file
93
apps/tenant-app/package.json
Normal file
@@ -0,0 +1,93 @@
|
||||
{
|
||||
"name": "tenant-app",
|
||||
"version": "2.0.30",
|
||||
"private": true,
|
||||
"description": "GT 2.0 Tenant Application - Customer-facing AI chat and document management",
|
||||
"scripts": {
|
||||
"dev": "next dev -p 3001",
|
||||
"build": "next build",
|
||||
"start": "next start -p 3001",
|
||||
"lint": "next lint",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"test": "jest --maxWorkers=2 --forceExit --detectOpenHandles",
|
||||
"test:watch": "jest --watch --maxWorkers=1",
|
||||
"test:coverage": "jest --coverage --maxWorkers=2 --forceExit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@hookform/resolvers": "^3.3.0",
|
||||
"@radix-ui/react-collapsible": "^1.1.12",
|
||||
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
||||
"@radix-ui/react-radio-group": "^1.3.8",
|
||||
"@radix-ui/react-scroll-area": "^1.2.10",
|
||||
"@radix-ui/react-select": "^2.2.6",
|
||||
"@radix-ui/react-slider": "^1.3.6",
|
||||
"@radix-ui/react-switch": "^1.2.6",
|
||||
"@radix-ui/react-tabs": "^1.1.13",
|
||||
"@radix-ui/react-tooltip": "^1.2.8",
|
||||
"@tailwindcss/forms": "^0.5.7",
|
||||
"@tailwindcss/typography": "^0.5.10",
|
||||
"@tanstack/react-query": "^5.90.10",
|
||||
"@tanstack/react-virtual": "^3.13.12",
|
||||
"@types/js-cookie": "^3.0.6",
|
||||
"@types/react": "^18.2.0",
|
||||
"@types/react-dom": "^18.2.0",
|
||||
"autoprefixer": "^10.4.0",
|
||||
"class-variance-authority": "^0.7.0",
|
||||
"clsx": "^2.1.0",
|
||||
"date-fns": "^3.2.0",
|
||||
"docx": "^9.5.1",
|
||||
"file-saver": "^2.0.5",
|
||||
"framer-motion": "^11.18.2",
|
||||
"html2canvas": "^1.4.1",
|
||||
"js-cookie": "^3.0.5",
|
||||
"lucide-react": "^0.321.0",
|
||||
"mermaid": "^11.11.0",
|
||||
"next": "^14.2.34",
|
||||
"postcss": "^8.4.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-dropzone": "^14.2.3",
|
||||
"react-hook-form": "^7.49.0",
|
||||
"react-markdown": "^9.0.1",
|
||||
"recharts": "^2.12.0",
|
||||
"rehype-highlight": "^7.0.0",
|
||||
"rehype-stringify": "^10.0.1",
|
||||
"remark": "^15.0.1",
|
||||
"remark-docx": "^0.1.8",
|
||||
"remark-gfm": "^4.0.0",
|
||||
"remark-parse": "^11.0.0",
|
||||
"remark-rehype": "^11.1.2",
|
||||
"sharp": "^0.33.5",
|
||||
"socket.io-client": "^4.7.4",
|
||||
"swr": "^2.2.4",
|
||||
"tailwind-merge": "^2.2.0",
|
||||
"tailwindcss": "^3.4.0",
|
||||
"unified": "^11.0.5",
|
||||
"zod": "^3.22.0",
|
||||
"zustand": "^4.5.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@playwright/test": "^1.57.0",
|
||||
"@testing-library/jest-dom": "^6.2.0",
|
||||
"@testing-library/react": "^14.1.0",
|
||||
"@testing-library/user-event": "^14.5.0",
|
||||
"@types/file-saver": "^2.0.7",
|
||||
"@types/node": "^24.3.0",
|
||||
"dotenv": "^17.2.1",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-config-next": "^14.2.34",
|
||||
"jest": "^29.7.0",
|
||||
"jest-environment-jsdom": "^29.7.0",
|
||||
"typescript": "5.9.3"
|
||||
},
|
||||
"keywords": [
|
||||
"ai",
|
||||
"chat",
|
||||
"tenant",
|
||||
"nextjs",
|
||||
"gt2"
|
||||
],
|
||||
"overrides": {
|
||||
"glob": "^11.1.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user