-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"clean": "npx rimraf node_modules .next && rm -f package-lock.json",
"reinstall": "npm run clean && npm install",
"dev:turbo": "next dev --turbo",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@react-google-maps/api": "^2.20.6",
"axios": "^1.8.4",
"clsx": "^2.1.1",
"concurrently": "^9.1.2",
"framer-motion": "^12.9.1",
"leaflet": "^1.9.4",
"lucide-react": "^0.509.0",
"next": "^15.5.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-dropzone": "^14.3.8",
"react-icons": "^5.5.0",
"react-leaflet": "^5.0.0",
"tailwind-scrollbar-hide": "^2.0.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/next": "^8.0.7",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.1.7",
"postcss": "^8.5.3",
"rimraf": "6.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5"
}
}