forked from steamship-core/ai-adventure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.02 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.02 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
93
94
95
96
97
{
"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"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.3.5",
"@clerk/nextjs": "^4.27.1",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@monaco-editor/react": "^4.6.0",
"@prisma/client": "^5.6.0",
"@radix-ui/react-accordion": "^1.1.2",
"@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-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.11",
"@react-spring/web": "^9.7.3",
"@slack/web-api": "^6.10.0",
"@stripe/stripe-js": "^2.1.9",
"@tanstack/react-query": "^5.8.4",
"@types/micro-cors": "^0.1.3",
"@vercel/analytics": "^1.0.2",
"@vercel/blob": "^0.15.1",
"@vercel/postgres": "^0.5.0",
"@vercel/speed-insights": "^1.0.1",
"@xstate/react": "^3.2.2",
"ai": "^2.2.24",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"eventsource-parser": "^1.1.1",
"json-stable-stringify": "^1.1.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.292.0",
"micro-cors": "^0.1.1",
"millify": "^6.1.0",
"next": "^14.0.3",
"next-axiom": "^1.1.1",
"next-themes": "^0.2.1",
"package": "^1.0.1",
"prisma": "^5.6.0",
"querystring": "^0.2.1",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.5.3",
"react-joyride": "^2.7.0",
"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.0",
"recoil": "^0.7.7",
"resend": "^2.0.0",
"stripe": "^14.5.0",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.1.3",
"typewriter-effect": "^2.21.0",
"uuid": "^9.0.1",
"yaml": "^2.3.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/cors": "^2.8.14",
"@types/json-stable-stringify": "^1.0.36",
"@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",
"postcss": "^8",
"tailwindcss": "^3",
"typescript": "^5"
}
}