-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.11 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.11 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
{
"name": "group_project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint . --fix",
"format": "prettier . --ignore-path .gitignore --write",
"fix-style": "npm run format & npm run lint",
"prepare": "husky"
},
"dependencies": {
"@react-spring/web": "^10.0.3",
"@react-three/drei": "^10.7.6",
"@react-three/fiber": "^9.3.0",
"@reduxjs/toolkit": "^2.9.0",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"embla-carousel": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.23.14",
"lucide-react": "^0.544.0",
"motion": "^12.23.12",
"next": "15.5.3",
"next-themes": "^0.4.6",
"openai": "^5.22.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-intersection-observer": "^9.16.0",
"react-parallax-tilt": "^1.7.308",
"react-redux": "^9.2.0",
"react-spring": "^10.0.3",
"react-tilt": "^1.0.2",
"react-tsparticles": "^2.12.2",
"redux-persist": "^6.0.0",
"sonner": "^2.0.7",
"stripe": "^18.5.0",
"swiper": "^12.0.1",
"tailwind-merge": "^3.3.1",
"three": "^0.180.0",
"tsparticles": "^3.9.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.180.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.35.0",
"eslint-config-next": "15.5.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-tailwindcss": "^3.18.2",
"husky": "^9.1.7",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.13",
"tw-animate-css": "^1.3.8",
"typescript": "^5"
},
"lint-staged": {
"*": "npm run fix-style"
},
"browserslist": [
">0.3%",
"not dead",
"not op_mini all"
]
}