-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.34 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
{
"name": "eunoh-dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint --cache .",
"genTypes": "supabase gen types typescript --project-id \"urtfszkmtgmcqrnchihz\" --schema public > src/types/supabase.ts",
"prepare": "husky",
"format": "prettier --cache --write ."
},
"dependencies": {
"@ai-sdk/openai": "^1.0.11",
"@react-spring/three": "^9.7.5",
"@react-spring/web": "^9.7.5",
"@react-three/cannon": "^6.6.0",
"@react-three/drei": "^9.120.4",
"@react-three/fiber": "^9.0.0-rc.1",
"@react-three/postprocessing": "^2.16.3",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.47.10",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.52.1",
"@tanstack/react-query-devtools": "^5.52.1",
"@types/three": "0.168.0",
"@uiw/react-markdown-preview": "^5.1.3",
"@uiw/react-md-editor": "v3.6.0",
"@vercel/analytics": "^1.3.1",
"ai": "^4.0.22",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"framer-motion": "^11.15.0",
"highlight.js": "^11.11.0",
"husky": "^9.1.7",
"next": "15.1.2",
"next-remove-imports": "^1.0.12",
"nipplejs": "^0.10.2",
"openai": "^4.77.0",
"postprocessing": "^6.36.4",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"react-intersection-observer": "^9.13.0",
"react-markdown": "^9.0.1",
"react-typed": "^2.0.12",
"rehype-highlight": "^7.0.1",
"remark-gfm": "^4.0.0",
"sharp": "0.32.6",
"supabase": "^2.1.1",
"tailwind-merge": "^2.5.2",
"three": "0.168.0",
"three.meshline": "^1.4.0",
"zod": "^3.24.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9",
"eslint-config-next": "15.1.0",
"lint-staged": "^15.2.11",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.4"
},
"lint-staged": {
"!(public)/**/*.{ts,tsx,json,yaml,yml}": [
"eslint --fix",
"prettier --write",
"git add ."
]
}
}