package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "@react-oauth/google": "^0.4.0",
  18. "@sentry/nextjs": "^7.16.0",
  19. "allotment": "^1.17.0",
  20. "axios": "^1.1.3",
  21. "compress-json": "^2.1.2",
  22. "html-to-image": "^1.10.8",
  23. "jsonc-parser": "^3.2.0",
  24. "jwt-decode": "^3.1.2",
  25. "next": "^12.3.1",
  26. "next-transpile-modules": "^9.1.0",
  27. "react": "^18.2.0",
  28. "react-color": "^2.19.3",
  29. "react-dom": "^18.2.0",
  30. "react-hot-toast": "^2.4.0",
  31. "react-icons": "^4.6.0",
  32. "react-in-viewport": "^1.0.0-alpha.28",
  33. "react-linkify-it": "^1.0.7",
  34. "react-zoom-pan-pinch": "^2.1.3",
  35. "reaflow": "^5.0.7",
  36. "styled-components": "^5.3.6",
  37. "zustand": "^4.1.3"
  38. },
  39. "devDependencies": {
  40. "@testing-library/react": "^13.3.0",
  41. "@trivago/prettier-plugin-sort-imports": "^3.3.0",
  42. "@types/node": "^18.7.21",
  43. "@types/react": "18.0.21",
  44. "@types/react-color": "^3.0.6",
  45. "@types/styled-components": "^5.1.26",
  46. "eslint": "8.24.0",
  47. "eslint-config-next": "12.3.1",
  48. "eslint-plugin-testing-library": "^5.7.0",
  49. "eslint-plugin-unused-imports": "^2.0.0",
  50. "next-pwa": "5.6.0",
  51. "prettier": "^2.7.1",
  52. "ts-node": "^10.9.1",
  53. "typescript": "4.8.3"
  54. }
  55. }