-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.71 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.71 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ai-bot-builder",
"version": "0.1.0",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "node scripts/seed.js",
"db:reset": "node scripts/reset-db.js",
"test:trust": "vitest run tests/unit/bot-trust",
"test:integration": "vitest run tests/integration",
"generate:types": "npx supabase gen types typescript --local > lib/database.types.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.17.1",
"@neondatabase/serverless": "^1.0.2",
"@paralleldrive/cuid2": "^3.0.4",
"@sentry/nextjs": "^8.0.0",
"@supabase/auth-helpers-nextjs": "^0.8.7",
"@supabase/supabase-js": "^2.39.1",
"@tailwindcss/postcss": "^4.1.17",
"@upstash/ratelimit": "^1.0.0",
"@upstash/redis": "^1.28.0",
"crypto-js": "^4.2.0",
"d3": "^7.8.5",
"drizzle-orm": "^0.44.7",
"isomorphic-dompurify": "^2.9.0",
"jose": "^6.1.3",
"lucide-react": "^0.316.0",
"next": "^14.1.0",
"pino": "^8.17.0",
"pino-pretty": "^10.3.0",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.10.0",
"stripe": "^20.0.0",
"swr": "^2.3.7",
"ws": "^8.14.2",
"zod": "^3.22.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-a11y": "^8.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-onboarding": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/nextjs": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/test": "^8.0.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/crypto-js": "^4.2.1",
"@types/node": "^20",
"@types/pusher-js": "^4.2.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/ws": "^8.5.10",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.0.4",
"autoprefixer": "^10.4.17",
"drizzle-kit": "^0.31.7",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"jsdom": "^23.0.1",
"msw": "^2.0.11",
"pg": "^8.16.3",
"postcss": "^8.4.35",
"storybook": "^8.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^1.0.4"
}
}