-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.51 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
{
"name": "@repo/ui",
"version": "0.0.0",
"private": true,
"exports": {
"./globals.css": "./src/globals.css",
"./postcss.config": "./postcss.config.mjs",
"./tailwind.config": "./tailwind.config.ts",
"./lib/*": "./src/lib/*.ts",
"./components/*": "./src/components/*.tsx",
"./providers/*": "./src/providers/*.tsx",
"./index": "./src/index.ts",
"./utils/*": "./src/utils/*.ts",
"./types-schemas": "./src/types-schemas.ts"
},
"scripts": {
"lint": "eslint . --max-warnings 0 --fix",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"generate:component": "turbo gen react-component",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@tailwindcss/postcss": "^4.1.11",
"@turbo/gen": "^2.8.3",
"@types/node": "^22.19.9",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"eslint": "^9.39.2",
"prettier": "^3.8.3",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.474.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"radix-ui": "^1.4.3",
"react": "^19.1.1",
"react-day-picker": "^9.8.1",
"react-dom": "^19.1.1",
"sonner": "^2.0.7",
"tailwind-merge": "^2.6.1",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0"
},
"imports": {
"#*": "./src/*"
}
}