-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.96 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"private": true,
"scripts": {
"dev": "next dev",
"cdev": "rm -rf .next && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"typecheck": "tsc --project tsconfig.json --pretty --noEmit",
"format": "npx prettier . --write",
"format:check": "npx prettier . --check",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.60",
"@builder.io/react-hydration-overlay": "^0.1.0",
"@nextui-org/accordion": "^2.0.38",
"@nextui-org/avatar": "^2.0.32",
"@nextui-org/breadcrumbs": "^2.0.12",
"@nextui-org/button": "^2.0.37",
"@nextui-org/divider": "^2.0.32",
"@nextui-org/input": "^2.2.4",
"@nextui-org/modal": "^2.0.41",
"@nextui-org/pagination": "^2.0.35",
"@nextui-org/popover": "^2.1.27",
"@nextui-org/progress": "^2.0.33",
"@nextui-org/react": "^2.4.6",
"@nextui-org/select": "^2.2.5",
"@nextui-org/skeleton": "^2.0.31",
"@nextui-org/table": "^2.0.39",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"@tanstack/react-query": "^5.55.4",
"@types/mdx": "^2.0.13",
"ai": "^3.3.41",
"autoprefixer": "10.4.17",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"cookies-next": "^4.2.1",
"framer-motion": "^11.5.4",
"geist": "^1.2.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.439.0",
"micro": "^10.0.1",
"midtrans-client": "^1.3.1",
"nanoid": "^5.0.7",
"next": "latest",
"next-nprogress-bar": "^2.3.14",
"postcss": "8.4.33",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.13",
"react-markdown": "^9.0.1",
"react-toastify": "^10.0.5",
"recharts": "^2.13.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"server-only": "^0.0.1",
"tailwind-merge": "^2.5.2",
"tailwindcss": "3.4.1",
"typescript": "5.3.3",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@tanstack/eslint-plugin-query": "^5.53.0",
"@tanstack/react-query-devtools": "^5.55.4",
"@types/eslint__js": "^8.42.3",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"encoding": "^0.1.13",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.2.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-server-components": "^1.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"supabase": "^1.192.5",
"typescript-eslint": "^8.3.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}