deps
Authored by
mfwolffe <wolffemf@dukes.jmu.edu>
- SHA
f0cd471701c9215699e52b5f586ca4dcdf5690c5- Parents
-
e0431b8 - Tree
913f6ac
f0cd471
f0cd471701c9215699e52b5f586ca4dcdf5690c5e0431b8
913f6ac| Status | File | + | - |
|---|---|---|---|
| M |
package.json
|
27 | 16 |
package.jsonmodified@@ -1,22 +1,33 @@ | ||
| 1 | 1 | { |
| 2 | - "name": "localtoast", | |
| 3 | - "version": "1.0.0", | |
| 2 | + "name": "frontend", | |
| 3 | + "version": "0.1.0", | |
| 4 | 4 | "private": true, |
| 5 | - "workspaces": [ | |
| 6 | - "frontend", | |
| 7 | - "backend" | |
| 8 | - ], | |
| 9 | 5 | "scripts": { |
| 10 | - "dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"", | |
| 11 | - "dev:backend": "npm run dev --workspace=backend", | |
| 12 | - "dev:frontend": "npm run dev --workspace=frontend", | |
| 13 | - "build": "npm run build --workspace=frontend && npm run build --workspace=backend", | |
| 14 | - "start": "npm run start --workspace=backend" | |
| 15 | - }, | |
| 16 | - "devDependencies": { | |
| 17 | - "concurrently": "^8.2.2" | |
| 6 | + "dev": "next dev -p 3001", | |
| 7 | + "build": "next build", | |
| 8 | + "start": "next start", | |
| 9 | + "lint": "next lint" | |
| 18 | 10 | }, |
| 19 | 11 | "dependencies": { |
| 20 | - "lucide-react": "^0.525.0" | |
| 12 | + "@tanstack/react-query": "^5.81.2", | |
| 13 | + "axios": "^1.10.0", | |
| 14 | + "leaflet": "^1.9.4", | |
| 15 | + "lucide-react": "^0.263.1", | |
| 16 | + "next": "15.3.4", | |
| 17 | + "react": "^19.0.0", | |
| 18 | + "react-dom": "^19.0.0", | |
| 19 | + "react-leaflet": "^5.0.0" | |
| 20 | + }, | |
| 21 | + "devDependencies": { | |
| 22 | + "@eslint/eslintrc": "^3", | |
| 23 | + "@tailwindcss/postcss": "^4", | |
| 24 | + "@types/leaflet": "^1.9.19", | |
| 25 | + "@types/node": "^20", | |
| 26 | + "@types/react": "^19", | |
| 27 | + "@types/react-dom": "^19", | |
| 28 | + "eslint": "^9", | |
| 29 | + "eslint-config-next": "15.3.4", | |
| 30 | + "tailwindcss": "^4", | |
| 31 | + "typescript": "^5" | |
| 21 | 32 | } |
| 22 | -} | |
| 33 | +} | |