chatbot-template/package.json

77 lines
2.4 KiB
JSON
Raw Normal View History

2023-05-19 12:33:56 -04:00
{
"private": true,
"scripts": {
2024-03-15 21:08:41 +03:00
"dev": "next dev",
2023-06-02 11:15:04 -04:00
"build": "next build",
2023-05-19 12:33:56 -04:00
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
2024-03-14 20:00:52 +03:00
"seed": "node -r dotenv/config ./scripts/seed.mjs",
2023-06-02 15:15:35 -04:00
"type-check": "tsc --noEmit",
2023-06-02 15:21:49 -04:00
"format:write": "prettier --write \"{app,lib,components}/**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"{app,lib,components}**/*.{ts,tsx,mdx}\" --cache"
2023-05-19 12:33:56 -04:00
},
"dependencies": {
2023-11-26 18:34:56 -06:00
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.0.5",
2023-11-26 12:32:01 -06:00
"@radix-ui/react-dropdown-menu": "^2.0.6",
2024-03-14 20:00:52 +03:00
"@radix-ui/react-icons": "^1.3.0",
2023-06-16 15:20:42 +04:00
"@radix-ui/react-label": "^2.0.2",
2023-11-26 12:32:01 -06:00
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
2023-06-07 16:17:59 +04:00
"@radix-ui/react-slot": "^1.0.2",
2023-06-16 15:20:42 +04:00
"@radix-ui/react-switch": "^1.0.3",
2023-11-26 12:32:01 -06:00
"@radix-ui/react-tooltip": "^1.0.7",
2024-01-20 10:39:02 -06:00
"@vercel/analytics": "^1.1.2",
2024-01-04 08:32:32 -06:00
"@vercel/kv": "^1.0.1",
"@vercel/og": "^0.6.2",
2024-03-14 20:00:52 +03:00
"ai": "^3.0.12",
2023-11-26 12:32:01 -06:00
"class-variance-authority": "^0.7.0",
2024-01-04 08:32:32 -06:00
"clsx": "^2.1.0",
2024-03-14 20:00:52 +03:00
"d3-scale": "^4.0.2",
"date-fns": "^3.3.1",
2023-11-26 12:32:01 -06:00
"focus-trap-react": "^10.2.3",
2024-01-20 10:39:02 -06:00
"framer-motion": "^10.18.0",
"geist": "^1.2.1",
2024-01-04 08:32:32 -06:00
"nanoid": "^5.0.4",
2024-05-01 23:16:07 -05:00
"next": "14.2.3",
2024-01-04 08:32:32 -06:00
"next-auth": "5.0.0-beta.4",
2023-05-19 12:33:56 -04:00
"next-themes": "^0.2.1",
2024-01-20 10:39:02 -06:00
"openai": "^4.24.7",
2023-05-19 12:33:56 -04:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-11-26 12:32:01 -06:00
"react-intersection-observer": "^9.5.3",
2023-05-19 12:33:56 -04:00
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
2023-11-26 12:32:01 -06:00
"react-textarea-autosize": "^8.5.3",
2023-05-19 12:33:56 -04:00
"remark-gfm": "^3.0.1",
2024-03-14 20:00:52 +03:00
"remark-math": "^5.1.1",
"sonner": "^1.4.3",
"usehooks-ts": "^2.16.0",
"zod": "^3.22.4"
2023-05-19 12:33:56 -04:00
},
"devDependencies": {
2023-11-26 12:32:01 -06:00
"@tailwindcss/typography": "^0.5.10",
2024-03-14 20:00:52 +03:00
"@types/d3-scale": "^4.0.8",
2024-01-20 10:39:02 -06:00
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
2024-01-04 08:32:32 -06:00
"@types/react-dom": "^18.2.18",
"@types/react-syntax-highlighter": "^15.5.11",
2024-01-20 10:39:02 -06:00
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.4.17",
2024-03-15 17:48:54 +03:00
"dotenv": "^16.4.5",
2024-01-04 08:32:32 -06:00
"eslint": "^8.56.0",
2024-01-20 10:39:02 -06:00
"eslint-config-next": "14.1.0",
2024-01-04 08:32:32 -06:00
"eslint-config-prettier": "^9.1.0",
2024-01-20 10:39:02 -06:00
"eslint-plugin-tailwindcss": "^3.14.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
2024-01-04 08:32:32 -06:00
"tailwind-merge": "^2.2.0",
2024-01-20 10:39:02 -06:00
"tailwindcss": "^3.4.1",
2023-11-26 12:32:01 -06:00
"tailwindcss-animate": "^1.0.7",
2024-01-04 08:32:32 -06:00
"typescript": "^5.3.3"
2023-05-22 10:16:09 -04:00
},
2023-06-22 11:10:08 -07:00
"packageManager": "pnpm@8.6.3"
2023-05-19 12:33:56 -04:00
}