-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.69 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.69 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "altcn",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:write": "prettier --write \"**/*.{js,ts,tsx,json,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{js,ts,tsx,json,mdx}\" --cache"
},
"dependencies": {
"@tailwindcss/postcss": "^4.2.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"fumadocs-core": "^15.8.5",
"fumadocs-mdx": "^11.10.1",
"fumadocs-ui": "^15.8.5",
"geist": "^1.7.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.475.0",
"next": "^15.5.15",
"next-themes": "^0.4.6",
"postcss": "^8.5.10",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.5",
"recharts": "^2.15.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^1.0.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/mdx": "^2.0.13",
"@types/node": "^20.19.39",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "^15.5.15",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"typescript": "^5.9.3"
},
"prettier": {
"endOfLine": "lf",
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"importOrder": [
"^(react/(.*)$)|^(react$)",
"^(react-dom/(.*)$)|^(react-dom$)",
"^(next/(.*)$)|^(next$)",
"<THIRD_PARTY_MODULES>",
"^class-variance-authority$",
"^tailwind-variants$",
"^lucide-react$",
"",
"^types$",
"^~/types/(.*)$",
"^~/config/(.*)$",
"^~/lib/(.*)$",
"^~/hooks/(.*)$",
"^~/utils/(.*)$",
"",
"^~/components/ui/(.*)$",
"^~/components/(.*)$",
"",
"^[./]",
"^[.]"
],
"importOrderSeparation": false,
"importOrderSortSpecifiers": true,
"importOrderBuiltinModulesToTop": true,
"importOrderParserPlugins": [
"typescript",
"jsx",
"decorators-legacy"
],
"importOrderMergeDuplicateImports": true,
"importOrderCombineTypeAndValueImports": true,
"plugins": [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
],
"tailwindStylesheet": "./app/globals.css",
"tailwindFunctions": [
"cn",
"cva",
"cx",
"clsx",
"tv"
],
"tailwindAttributes": [
"className",
"class",
"classNames",
"toastOptions"
]
}
}