-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.99 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.99 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
{
"name": "myheart_crystal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest --watch",
"mobile": "next dev -H 0.0.0.0 -p 3000"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@next/third-parties": "^15.0.3",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-slot": "^1.0.2",
"@react-three/drei": "^9.112.0",
"@react-three/fiber": "^8.16.6",
"@react-three/postprocessing": "^2.16.3",
"@react-three/rapier": "^1.5.0",
"@storybook/addon-themes": "^8.1.6",
"@tanstack/react-query": "^5.59.20",
"@types/mongoose": "^5.11.97",
"@uiw/react-color": "^2.3.2",
"@vercel/analytics": "^1.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.381.0",
"mongodb": "^6.9.0",
"mongoose": "^8.7.0",
"next": "14.2.3",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.3.0",
"postprocessing": "^6.36.4",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-joyride": "^2.9.3",
"react-joystick-component": "^6.2.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.3.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.7",
"three": "^0.164.1",
"uuid": "^11.0.2",
"vaul": "^0.9.4",
"zod": "^3.23.8",
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.1.5",
"@storybook/addon-interactions": "^8.1.5",
"@storybook/addon-links": "^8.1.5",
"@storybook/addon-onboarding": "^8.1.5",
"@storybook/addon-viewport": "^8.1.6",
"@storybook/blocks": "^8.1.5",
"@storybook/nextjs": "^8.1.5",
"@storybook/react": "^8.1.5",
"@storybook/test": "^8.1.5",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/three": "^0.168.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-storybook": "^0.8.0",
"husky": ">=7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": ">=10",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.20.0",
"storybook": "^8.1.5",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}