forked from cosscom/coss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.2 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
109
110
111
112
113
114
115
{
"name": "originui",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "pnpm format:write && next build",
"registry:build": "shadcn build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@headless-tree/core": "^1.2.0",
"@headless-tree/react": "^1.2.0",
"@internationalized/date": "^3.8.2",
"@origin-space/image-cropper": "^0.1.9",
"@radix-ui/react-icons": "^1.3.2",
"@remixicon/react": "^4.6.0",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.1.1",
"date-fns": "^4.1.0",
"emblor": "^1.4.8",
"hast-util-to-jsx-runtime": "^2.3.6",
"input-otp": "^1.4.2",
"jotai": "^2.12.5",
"lodash": "^4.17.21",
"lucide-react": "^0.522.0",
"next": "^15.3.4",
"next-themes": "^0.4.6",
"radix-ui": "latest",
"react": "^19.1.0",
"react-aria": "^3.41.1",
"react-aria-components": "^1.10.1",
"react-day-picker": "^9.7.0",
"react-dom": "^19.1.0",
"react-intersection-observer": "^9.16.0",
"react-payment-inputs": "^1.2.0",
"react-phone-number-input": "^3.4.12",
"react-resizable-panels": "^3.0.3",
"shadcn": "^2.7.0",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.1",
"ts-morph": "^26.0.0",
"tsx": "^4.20.3",
"use-mask-input": "^3.4.2",
"zod": "^3.25.67"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.2",
"@tailwindcss/postcss": "^4.1.10",
"@types/node": "^24.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react-payment-inputs": "^1.1.4",
"eslint": "^9.29.0",
"eslint-config-next": "15.3.4",
"postcss": "^8.5.6",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.13",
"rimraf": "^6.0.1",
"shiki": "^3.7.0",
"tailwindcss": "^4.1.10",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3"
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"importOrder": [
"^(react/(.*)$)|^(react$)",
"^(next/(.*)$)|^(next$)",
"<THIRD_PARTY_MODULES>",
"",
"^types$",
"^@/types/(.*)$",
"^@/config/(.*)$",
"^@/lib/(.*)$",
"^@/hooks/(.*)$",
"^@/components/ui/(.*)$",
"^@/components/(.*)$",
"^@/registry/(.*)$",
"^@/styles/(.*)$",
"^@/app/(.*)$",
"",
"^[./]"
],
"importOrderSeparation": false,
"importOrderSortSpecifiers": true,
"importOrderBuiltinModulesToTop": true,
"importOrderParserPlugins": [
"typescript",
"jsx",
"decorators-legacy"
],
"importOrderMergeDuplicateImports": true,
"importOrderCombineTypeAndValueImports": true,
"plugins": [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
]
}
}