-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.44 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.44 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
{
"name": "exit-zero",
"version": "1.0.0",
"description": "AI-native retention infrastructure for SaaS companies",
"private": true,
"homepage": "https://github.com/adityash8/exit-zero#readme",
"repository": {
"type": "git",
"url": "https://github.com/adityash8/exit-zero.git"
},
"bugs": {
"url": "https://github.com/adityash8/exit-zero/issues"
},
"keywords": [
"ai",
"retention",
"churn",
"saas",
"stripe",
"supabase",
"nextjs",
"typescript",
"machine-learning",
"reinforcement-learning",
"webhook",
"api",
"react",
"open-source"
],
"author": "ExitZero Team",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"demo": "open demo.html",
"setup": "./scripts/setup.sh"
},
"dependencies": {
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@supabase/supabase-js": "^2.38.0",
"@supabase/auth-helpers-nextjs": "^0.8.7",
"@supabase/auth-helpers-react": "^0.4.2",
"@supabase/auth-ui-react": "^0.4.6",
"@supabase/auth-ui-shared": "^0.1.8",
"stripe": "^14.0.0",
"openai": "^4.20.0",
"@anthropic-ai/sdk": "^0.9.0",
"redis": "^4.6.0",
"posthog-js": "^1.85.0",
"posthog-node": "^3.0.0",
"zod": "^3.22.0",
"tailwindcss": "^3.3.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"@headlessui/react": "^1.7.0",
"@heroicons/react": "^2.0.0",
"recharts": "^2.8.0",
"date-fns": "^2.30.0",
"clsx": "^2.0.0",
"class-variance-authority": "^0.7.0",
"lucide-react": "^0.292.0",
"framer-motion": "^10.16.0",
"react-hook-form": "^7.47.0",
"@hookform/resolvers": "^3.3.0",
"react-hot-toast": "^2.4.0",
"nanoid": "^5.0.0",
"jose": "^5.1.0",
"nodemailer": "^6.9.0",
"@slack/web-api": "^6.10.0",
"ml-matrix": "^6.10.0",
"simple-statistics": "^7.8.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/nodemailer": "^6.4.0",
"typescript": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.0"
}
}