-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
116 lines (116 loc) · 3.77 KB
/
package.json
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ai-adventure",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev:db-push": "dotenv -e .env.local prisma db push",
"prod:db-push": "vercel env pull --environment=production && dotenv -e .env.local prisma db push && vercel env pull ",
"postinstall": "prisma generate",
"costs": "dotenv -e .env.local tsx ./lib/scripts/costs.ts",
"backfill": "dotenv -e .env.local tsx ./lib/scripts/backfill_avatars.ts",
"prod:update-agents": "dotenv -e .env.production.local tsx ./lib/scripts/update-agent-version.ts",
"test": "jest"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.3.7",
"@clerk/nextjs": "^4.29.3",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@monaco-editor/react": "^4.6.0",
"@prisma/client": "^5.7.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/components": "^0.0.12",
"@react-spring/web": "^9.7.3",
"@slack/web-api": "^6.10.0",
"@stripe/stripe-js": "^2.2.1",
"@tanstack/react-query": "^5.14.0",
"@vercel/analytics": "^1.0.2",
"@vercel/blob": "^0.16.1",
"@vercel/kv": "^1.0.1",
"@vercel/postgres": "^0.5.0",
"@vercel/speed-insights": "^1.0.1",
"ai": "^2.2.29",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cors": "^2.8.5",
"date-fns": "^3.0.6",
"eventsource-parser": "^1.1.1",
"framer-motion": "^10.16.16",
"json-stable-stringify": "^1.1.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.303.0",
"micro-cors": "^0.1.1",
"millify": "^6.1.0",
"mini-svg-data-uri": "^1.4.4",
"next": "^14.0.4",
"next-axiom": "^1.1.1",
"next-themes": "^0.2.1",
"package": "^1.0.1",
"prisma": "^5.7.0",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.5.3",
"react-joyride": "^2.7.1",
"react-scroll-to-bottom": "^4.2.0",
"react-select": "^5.7.7",
"react-textarea-autosize": "^8.5.3",
"react-type-animation": "^3.2.0",
"react-use": "^17.4.2",
"recoil": "^0.7.7",
"resend": "^2.0.0",
"stripe": "^14.9.0",
"svix": "^1.15.0",
"tailwind-merge": "^2.1.0",
"tailwindcss": "^3.3.6",
"tailwindcss-animate": "^1.0.7",
"tqdm": "^2.0.3",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"typewriter-effect": "^2.21.0",
"unique-names-generator": "^4.7.1",
"unique-username-generator": "^1.2.0",
"uuid": "^9.0.1",
"yaml": "^2.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/cors": "^2.8.14",
"@types/json-stable-stringify": "^1.0.36",
"@types/micro-cors": "^0.1.5",
"@types/node": "^20.9.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-scroll-to-bottom": "^4.2.3",
"@types/uuid": "^9.0.4",
"autoprefixer": "^10",
"dotenv-cli": "^7.3.0",
"eslint": "^8",
"eslint-config-next": "^14.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"ts-node": "^10.9.2"
}
}