forked from agno-agi/agent-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "sifa-agentic-rag-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"dev:wrangler": "wrangler dev --env-file .env.local --port 3000",
"build": "next build",
"build:cloudflare": "opennextjs-cloudflare build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"format:fix": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"typecheck": "tsc --noEmit",
"validate": "pnpm run lint && pnpm run format && pnpm run typecheck",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy"
},
"dependencies": {
"@opennextjs/cloudflare": "latest",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"framer-motion": "^12.31.2",
"lucide-react": "^0.474.0",
"next": "15.2.3",
"next-themes": "^0.4.6",
"nuqs": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.6.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.1.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^1.7.4",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"use-stick-to-bottom": "^1.1.2",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@types/node": "^20.19.31",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "15.2.3",
"postcss": "^8.5.6",
"prettier": "3.4.2",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"wrangler": "^4.63.0"
}
}