-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 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
{
"name": "frontend-bmwarehouse",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"prepare:husky": "husky install"
},
"dependencies": {
"@fullpage/react-fullpage": "^0.1.42",
"@vercel/analytics": "^1.2.2",
"bcrypt": "^5.1.1",
"chart.js": "^4.4.2",
"cloudinary": "^2.2.0",
"framer-motion": "^11.1.9",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.378.0",
"next": "14.2.3",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-google-recaptcha": "^3.1.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.0",
"sharp": "^0.33.3",
"tailwind-scrollbar-hide": "^1.1.7",
"zustand": "^4.5.2"
},
"engines": {
"npm": "please-use-pnpm",
"node": ">=20.x.x",
"pnpm": ">=8"
},
"devDependencies": {
"autoprefixer": "10.4.15",
"daisyui": "^4.10.5",
"eslint": "^8",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-import-alias": "1.2.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-tailwindcss": "3.13.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"postcss": "^8",
"prettier": "3.0.3",
"tailwindcss": "^3.4.1"
},
"lint-staged": {
"*.{js, jsx, ts, tsx}": [
"eslint --cache --fix",
"prettier --write ."
],
"*.{css, scss, md, html}": [
"prettier --write ."
]
}
}