package.json 945 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "photoplaces-frontend",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "next dev",
  7. "build": "next build",
  8. "start": "next start",
  9. "lint": "next lint",
  10. "typecheck": "tsc --noEmit",
  11. "test": "vitest run",
  12. "test:watch": "vitest"
  13. },
  14. "dependencies": {
  15. "next": "^14.1.0",
  16. "react": "^18.2.0",
  17. "react-dom": "^18.2.0",
  18. "leaflet": "^1.9.4"
  19. },
  20. "devDependencies": {
  21. "@types/node": "^20.11.0",
  22. "@types/react": "^18.2.0",
  23. "@types/react-dom": "^18.2.0",
  24. "@types/leaflet": "^1.9.12",
  25. "typescript": "^5.3.0",
  26. "eslint": "^8.56.0",
  27. "eslint-config-next": "^14.1.0",
  28. "tailwindcss": "^3.4.0",
  29. "autoprefixer": "^10.4.0",
  30. "postcss": "^8.4.0",
  31. "prettier": "^3.2.0",
  32. "prettier-plugin-tailwindcss": "^0.5.0",
  33. "vitest": "^1.0.0",
  34. "@testing-library/react": "^14.0.0",
  35. "@testing-library/jest-dom": "^6.0.0",
  36. "jsdom": "^24.0.0"
  37. }
  38. }