-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.81 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
{
"name": "foliofox",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"seed:audit": "node scripts/audit-seed.mjs supabase/seed.sql",
"type": "tsc --noEmit",
"types:supabase:local": "supabase gen types typescript --local > types/database.types.ts",
"types:supabase:linked": "supabase gen types typescript --linked > types/database.types.ts",
"shadcn:update": "node scripts/update-shadcn.mjs",
"test": "vitest",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.49",
"@ai-sdk/react": "^3.0.138",
"@hookform/resolvers": "^5.2.2",
"@posthog/react": "^1.4.0",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@supabase/ssr": "^0.10.0",
"@supabase/supabase-js": "^2.101.0",
"@tanstack/react-table": "^8.21.2",
"ai": "^6.0.108",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"gray-matter": "^4.0.3",
"lucide-react": "^1.7.0",
"motion": "^12.37.0",
"nanoid": "^5.1.6",
"next": "^16.1.7",
"next-themes": "^0.4.6",
"posthog-js": "^1.364.2",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.4",
"react-dropzone": "^15.0.0",
"react-hook-form": "^7.71.1",
"react-number-format": "^5.4.4",
"recharts": "^3.6.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"shiki": "^4.0.1",
"sonner": "^2.0.7",
"streamdown": "^2.4.0",
"tailwind-merge": "^3.0.2",
"use-debounce": "^10.1.1",
"use-stick-to-bottom": "^1.1.3",
"uuid": "^13.0.0",
"vaul": "^1.1.2",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"yahoo-finance2": "^3.6.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.8",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.19.3",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsdom": "^29.0.0",
"lint-staged": "^16.3.1",
"picomatch": "^4.0.4",
"postcss": "^8",
"prettier": "^3.5.2",
"prettier-plugin-tailwindcss": "^0.7.0",
"supabase": "^2.84.5",
"tailwindcss": "^4.0.8",
"tw-animate-css": "^1.2.5",
"typescript": "^5",
"vitest": "^4.1.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint",
"*": "bash -c 'npm run type'"
}
}