forked from lunary-ai/lunary
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
{
"name": "lunary-app",
"version": "0.3.0",
"private": true,
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ./**/*.{ts,tsx}",
"supabase:gen-types": "source .env && supabase gen types typescript --db-url $DB_URI typescript > utils/supaTypes.ts"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@highlight-run/next": "^7.2.5",
"@json2csv/plainjs": "^7.0.4",
"@mantine/core": "^7.3.1",
"@mantine/form": "^7.3.1",
"@mantine/hooks": "^7.3.1",
"@mantine/modals": "^7.3.1",
"@mantine/notifications": "^7.3.1",
"@supabase-cache-helpers/postgrest-swr": "^1.2.6",
"@supabase/auth-helpers-nextjs": "^0.8.7",
"@supabase/auth-helpers-react": "^0.4.2",
"@supabase/supabase-js": "^2.39.0",
"@tabler/icons-react": "^2.42.0",
"@tanstack/react-table": "^8.10.7",
"@tanstack/react-virtual": "3.0.0-alpha.0",
"@types/node": "20.10.4",
"@types/react": "18.2.42",
"@types/react-dom": "18.2.17",
"@upstash/ratelimit": "^1.0.0",
"@vercel/kv": "^1.0.1",
"ai": "^2.2.28",
"bcrypt": "^5.1.1",
"crisp-sdk-web": "^1.0.21",
"date-fns": "^2.30.0",
"eslint": "8.55.0",
"eslint-config-next": "14.0.4",
"js-tiktoken": "1.0.7",
"litellm": "^0.7.1",
"micro": "^10.0.1",
"next": "^14.0.4",
"next-plausible": "^3.12.0",
"next-seo": "^6.4.0",
"openai": "^4.20.1",
"postgres": "^3.4.3",
"posthog-js": "^1.94.1",
"react": "18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "18.2.0",
"react-json-view-lite": "^1.2.1",
"recharts": "^2.10.3",
"stripe": "^14.8.0",
"swr": "^2.2.4",
"tiktoken": "^1.0.11",
"typescript": "5.3.3",
"use-query-params": "^2.2.1",
"zod": "^3.22.4"
},
"devDependencies": {
"postcss": "^8.4.32",
"postcss-preset-mantine": "^1.11.1",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.1.0"
},
"prettier": {
"semi": false
}
}