mirror of
https://github.com/furyhawk/agent_delta.git
synced 2026-07-21 18:25:37 +00:00
103 lines
3.1 KiB
JSON
103 lines
3.1 KiB
JSON
{
|
|
"name": "agent_delta-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev -p 3000",
|
|
"build": "next build",
|
|
"start": "next start -p 3000",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"type-check": "tsc --noEmit",
|
|
"prepare": "husky",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:e2e:debug": "playwright test --debug",
|
|
"test:e2e:report": "playwright show-report",
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:ui": "vitest --ui"
|
|
},
|
|
"dependencies": {
|
|
"next": "^15.1.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"@tanstack/react-query": "^5.62.0",
|
|
"zustand": "^5.0.2",
|
|
"nanoid": "^5.0.9",
|
|
"lucide-react": "^0.468.0",
|
|
"clsx": "^2.1.1",
|
|
"tailwind-merge": "^2.6.0",
|
|
"@vercel/otel": "^1.10.0",
|
|
"@opentelemetry/api": "^1.9.0",
|
|
"next-intl": "^3.25.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"@radix-ui/react-accordion": "^1.2.0",
|
|
"@radix-ui/react-alert-dialog": "^1.1.0",
|
|
"@radix-ui/react-avatar": "^1.1.0",
|
|
"@radix-ui/react-checkbox": "^1.1.0",
|
|
"@radix-ui/react-dialog": "^1.1.0",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.0",
|
|
"@radix-ui/react-label": "^2.1.0",
|
|
"@radix-ui/react-popover": "^1.1.0",
|
|
"@radix-ui/react-progress": "^1.1.0",
|
|
"@radix-ui/react-radio-group": "^1.2.0",
|
|
"@radix-ui/react-scroll-area": "^1.2.0",
|
|
"@radix-ui/react-select": "^2.1.0",
|
|
"@radix-ui/react-separator": "^1.1.0",
|
|
"@radix-ui/react-slot": "^1.1.0",
|
|
"@radix-ui/react-switch": "^1.1.0",
|
|
"@radix-ui/react-tabs": "^1.1.0",
|
|
"@radix-ui/react-tooltip": "^1.1.0",
|
|
"recharts": "^3.0.0",
|
|
"sonner": "^1.7.0",
|
|
"react-markdown": "^9.0.1",
|
|
"remark-gfm": "^4.0.0",
|
|
"rehype-highlight": "^7.0.0",
|
|
"cmdk": "^1.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"leaflet": "^1.9.4",
|
|
"react-leaflet": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.2",
|
|
"@types/node": "^22.10.2",
|
|
"@types/react": "^19.0.1",
|
|
"@types/react-dom": "^19.0.2",
|
|
"tailwindcss": "^4.0.0",
|
|
"@tailwindcss/postcss": "^4.0.0",
|
|
"postcss": "^8.4.49",
|
|
"eslint": "^9.17.0",
|
|
"@eslint/eslintrc": "^3.2.0",
|
|
"eslint-config-next": "^15.1.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"prettier": "^3.4.2",
|
|
"prettier-plugin-tailwindcss": "^0.8.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.0.0",
|
|
"@playwright/test": "^1.49.1",
|
|
"vitest": "^2.1.8",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"@testing-library/react": "^16.1.0",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/user-event": "^14.5.2",
|
|
"jsdom": "^25.0.1",
|
|
"@vitest/coverage-v8": "^2.1.8",
|
|
"@vitest/ui": "^2.1.8",
|
|
"@types/leaflet": "^1.9.21"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,jsx,tsx,mdx}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
],
|
|
"*.{css,json,md,yml,yaml}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|