-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.27 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 4.27 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
116
117
{
"name": "animata",
"version": "4.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node ./scripts/build-demo-sources.js && velite --watch & next dev & storybook dev -p 6006 --no-open & wait",
"build": "velite && node ./scripts/build-demo-sources.js && node ./scripts/validate-demo-registry.js && node ./scripts/build-registry.js && node ./scripts/build-docs-markdown.js && node ./scripts/build-llms-txt.js && storybook build -o public/preview && next build --webpack",
"start": "next start",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"validate:demos": "node ./scripts/validate-demo-registry.js",
"validate:registry": "node ./scripts/validate-registry-install.js",
"validate:registry:build": "node ./scripts/validate-registry-install.js --build",
"format": "biome format --write .",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build -o public/preview",
"og:build": "node ./scripts/build-og-images.mjs",
"og:fonts:sync": "node ./scripts/sync-og-fonts.mjs",
"og:migrate": "node ./scripts/build-og-images.mjs --migrate-from-flat",
"og:upload": "node ./scripts/upload-og-r2.mjs",
"animata:new": "node ./scripts/create-new.js",
"registry:build": "node ./scripts/build-registry.js && node ./scripts/build-docs-markdown.js && node ./scripts/build-llms-txt.js",
"shadcn:add": "npx shadcn@latest add",
"prepare": "husky"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.2.2",
"@fontsource-variable/instrument-sans": "^5.2.8",
"@fontsource-variable/lilex": "^5.2.1",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/typography": "^0.5.19",
"@tsparticles/engine": "^3.5.0",
"@tsparticles/react": "^3.0.0",
"chalk": "^5.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.startcase": "^4.4.0",
"lucide-react": "^0.475.0",
"mdast-util-toc": "^7.1.0",
"motion": "^12.38.0",
"next": "^16.2.6",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"nuqs": "^2.8.9",
"ora": "^8.0.1",
"posthog-js": "^1.225.0",
"prompts": "^2.4.2",
"react": "^19",
"react-dom": "^19",
"react-wrap-balancer": "^1.1.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-code-import": "^1.2.0",
"remark-gfm": "^4.0.0",
"shiki": "^3.0.0",
"tailwind-merge": "^3.6.0",
"tsparticles": "^3.5.0",
"tw-animate-css": "^1.4.0",
"velite": "^0.2.3",
"zod": "^3.24.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@fontsource/ibm-plex-sans": "^5.2.8",
"@fontsource/outfit": "^5.2.8",
"@mdx-js/mdx": "^3.1.1",
"@storybook/addon-docs": "^10.2.15",
"@storybook/addon-themes": "^10.2.15",
"@storybook/nextjs": "^10.2.15",
"@storybook/react": "^10.2.15",
"@tailwindcss/postcss": "^4.3.0",
"@types/lodash.camelcase": "^4",
"@types/lodash.kebabcase": "^4",
"@types/lodash.startcase": "^4",
"@types/node": "^22",
"@types/prompts": "^2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/unist": "^3.0.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"playwright": "^1.59.1",
"storybook": "^10.2.15",
"tailwindcss": "^4.3.0",
"typescript": "^5",
"unist-util-visit": "^5.1.0",
"vfile": "^6.0.3",
"wrangler": "^3.114.17"
},
"packageManager": "pnpm@11.5.0",
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,md,mdx}": [
"biome check --fix --no-errors-on-unmatched"
]
}
}