-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.9 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.9 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
{
"name": "experiments",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"new:experiment": "plop experiment",
"delete:experiment": "node scripts/delete-experiment.mjs",
"prepare": "husky || true"
},
"dependencies": {
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.4.2",
"@types/three": "^0.182.0",
"autoprefixer": "^10.4.23",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.26",
"lucide-react": "^0.562.0",
"mini-svg-data-uri": "^1.4.4",
"next": "16.1.1",
"postcss": "^8.5.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"three": "^0.182.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@storybook/addon-a11y": "^10.1.10",
"@storybook/addon-docs": "^10.1.10",
"@storybook/addon-onboarding": "^10.1.10",
"@storybook/addon-vitest": "^10.1.10",
"@storybook/nextjs-vite": "^10.1.10",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"eslint-plugin-storybook": "^10.1.10",
"jsdom": "^27.3.0",
"playwright": "^1.57.0",
"plop": "^4.0.4",
"storybook": "^10.1.10",
"typescript": "^5",
"vite": "^7.3.0",
"vitest": "^4.0.16"
}
}