forked from OFFER-HUB/OFFER-HUB-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"name": "offer-hub-frontend",
"version": "1.0.0",
"description": "OFFER-HUB Frontend - Production-grade Next.js application",
"private": true,
"scripts": {
"dev": "next dev --port ${PORT:-3000}",
"build": "next build",
"start": "next start --port ${PORT:-3000}",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=20.9"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@tanstack/react-query": "^5.90.16",
"clsx": "^2.1.1",
"country-state-city": "^3.2.1",
"framer-motion": "^12.34.5",
"next": "^16.1.1",
"next-auth": "^5.0.0-beta.30",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.70.0",
"react-joyride": "^2.9.3",
"recharts": "^2.15.4",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"zod": "^4.3.5",
"zustand": "^5.0.9"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
}
}