-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.58 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.58 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
{
"name": "shadcn-extras",
"version": "0.1.0",
"description": "Reusable animated UI components built with Motion + Tailwind CSS. Easy to use, customizable, and production-ready.",
"keywords": [
"shadcn",
"ui",
"tailwindcss",
"motion",
"animated components",
"react",
"design system"
],
"author": "Nayan Radadiya",
"repository": {
"type": "git",
"url": "https://github.com/nayanrdeveloper/shadcn-extras"
},
"bugs": {
"url": "https://github.com/nayanrdeveloper/shadcn-extras/issues"
},
"homepage": "https://nayanrdeveloper.github.io/shadcn-extras/",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:registry": "tsx scripts/registry-build.ts",
"docs:build": "next build",
"lint": "eslint app components hooks lib scripts stories __tests__ --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"lint:fix": "eslint app components hooks lib scripts stories __tests__ --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write .",
"check-format": "prettier --check .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o storybook-static",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:ci": "jest --ci --runInBand"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0 --fix",
"prettier --write"
],
"*.{md,mdx,css,json,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@code-hike/mdx": "^0.9.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.4",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@types/mdx": "^2.0.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "^1.3.1",
"glob": "^11.0.1",
"lucide-react": "^0.400.0",
"motion": "^11.12.0",
"next": "^14.2.14",
"next-themes": "^0.3.0",
"radix-ui": "^1.4.3",
"react": "^18",
"react-dom": "^18",
"react-use-measure": "^2.1.1",
"remark-gfm": "^4.0.0",
"shiki": "^1.10.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@storybook/addon-a11y": "^8.6.14",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-themes": "^8.6.14",
"@storybook/nextjs": "^8.6.14",
"@storybook/test": "^8.6.14",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.17.9",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.1.0",
"jest-environment-jsdom": "^30.1.0",
"next-router-mock": "^1.0.2",
"postcss": "^8",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.0.0-insiders.6d3fa07",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5"
}
}