-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.53 KB
/
package.json
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": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky install",
"postbuild": "next-sitemap"
},
"engines": {
"node": ">=18.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext .js,.jsx,.ts,.tsx --fix"
],
"*{js,jsx,ts,tsx,json,cjs,mjs,md}": [
"prettier --write"
]
},
"dependencies": {
"@apollo/client": "^3.10.3",
"@apollo/experimental-nextjs-app-support": "^0.10.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@hookform/resolvers": "^3.3.4",
"@next/eslint-plugin-next": "^14.2.3",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.1.2",
"@react-three/drei": "^9.105.6",
"@react-three/fiber": "8.15.16",
"@reduxjs/toolkit": "^2.2.4",
"@splinetool/r3f-spline": "1.0.2",
"@splinetool/react-spline": "2.2.6",
"@splinetool/runtime": "1.0.42",
"@syncfusion/ej2-base": "^25.2.3",
"@syncfusion/ej2-react-buttons": "^25.2.3",
"@syncfusion/ej2-react-calendars": "^25.2.3",
"@syncfusion/ej2-react-dropdowns": "^25.2.3",
"@syncfusion/ej2-react-inputs": "^25.2.3",
"@syncfusion/ej2-react-navigations": "^25.2.3",
"@syncfusion/ej2-react-schedule": "^25.2.3",
"@syncfusion/ej2-react-splitbuttons": "^25.2.3",
"@tweenjs/tween.js": "23.1.1",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-tailwindcss": "^3.15.1",
"framer-motion": "^11.1.9",
"graphql": "^16.8.1",
"husky": "^9.0.11",
"jsonwebtoken": "^9.0.2",
"locomotive-scroll": "^5.0.0-beta.11",
"lucide-react": "^0.378.0",
"moment-timezone": "^0.5.45",
"next": "14.2.6",
"next-sitemap": "^4.2.3",
"react": "^18",
"react-day-picker": "^8.10.1",
"react-dom": "^18",
"react-hook-form": "^7.51.4",
"react-icons": "^5.2.1",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"sass": "^1.77.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"three": "0.161.0",
"troika-three-text": "^0.49.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/three": "0.161.2",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"autoprefixer": "^10.4.19",
"eslint": "8.56.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
}
}