package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "json-crack",
  3. "private": true,
  4. "version": "v2.1.0",
  5. "author": "https://github.com/AykutSarac",
  6. "homepage": "https://jsoncrack.com",
  7. "scripts": {
  8. "dev": "next dev",
  9. "build": "next build && next export",
  10. "start": "next start",
  11. "lint": "next lint",
  12. "lint:fix": "prettier --write \"./**/*.{ts,tsx,json}\"",
  13. "deploy": "gh-pages -d out -t true"
  14. },
  15. "dependencies": {
  16. "@monaco-editor/react": "^4.4.6",
  17. "@sentry/nextjs": "^7.16.0",
  18. "allotment": "^1.17.0",
  19. "compress-json": "^2.1.2",
  20. "html-to-image": "^1.10.8",
  21. "jsonc-parser": "^3.2.0",
  22. "next": "^12.3.1",
  23. "next-transpile-modules": "^9.1.0",
  24. "react": "^18.2.0",
  25. "react-color": "^2.19.3",
  26. "react-dom": "^18.2.0",
  27. "react-hot-toast": "^2.4.0",
  28. "react-icons": "^4.6.0",
  29. "react-in-viewport": "^1.0.0-alpha.28",
  30. "react-linkify-it": "^1.0.7",
  31. "react-zoom-pan-pinch": "^2.1.3",
  32. "reaflow": "^5.0.7",
  33. "styled-components": "^5.3.6",
  34. "zustand": "^4.1.3"
  35. },
  36. "devDependencies": {
  37. "@testing-library/react": "^13.3.0",
  38. "@trivago/prettier-plugin-sort-imports": "^3.3.0",
  39. "@types/node": "^18.7.21",
  40. "@types/react": "18.0.21",
  41. "@types/react-color": "^3.0.6",
  42. "@types/styled-components": "^5.1.26",
  43. "eslint": "8.24.0",
  44. "eslint-config-next": "12.3.1",
  45. "eslint-plugin-testing-library": "^5.7.0",
  46. "eslint-plugin-unused-imports": "^2.0.0",
  47. "next-pwa": "5.6.0",
  48. "prettier": "^2.7.1",
  49. "ts-node": "^10.9.1",
  50. "typescript": "4.8.3"
  51. }
  52. }