package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "json-crack",
  3. "private": true,
  4. "version": "v2.8.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": "tsc && next lint",
  12. "lint:fix": "prettier --write ./src & eslint --fix src",
  13. "deploy": "gh-pages -d out -t true"
  14. },
  15. "dependencies": {
  16. "@emotion/react": "^11.10.6",
  17. "@emotion/server": "^11.10.0",
  18. "@mantine/core": "^6.0.1",
  19. "@mantine/hooks": "^6.0.1",
  20. "@mantine/next": "^6.0.1",
  21. "@mantine/prism": "^6.0.1",
  22. "@monaco-editor/react": "^4.4.6",
  23. "@sentry/nextjs": "^7.42.0",
  24. "@tanstack/react-query": "^4.26.1",
  25. "allotment": "^1.18.1",
  26. "altogic": "^2.3.9",
  27. "axios": "^1.3.4",
  28. "dayjs": "^1.11.7",
  29. "html-to-image": "^1.11.11",
  30. "jsonc-parser": "^3.2.0",
  31. "lodash.debounce": "^4.0.8",
  32. "lz-string": "^1.5.0",
  33. "next": "^13.2.3",
  34. "react": "^18.2.0",
  35. "react-color": "^2.19.3",
  36. "react-dom": "^18.2.0",
  37. "react-hot-toast": "^2.4.0",
  38. "react-icons": "^4.8.0",
  39. "react-linkify-it": "^1.0.7",
  40. "react-syntax-highlighter": "^15.5.0",
  41. "react-zoom-pan-pinch": "^3.0.2",
  42. "reaflow": "^5.1.2",
  43. "styled-components": "^5.3.8",
  44. "zustand": "^4.3.6"
  45. },
  46. "devDependencies": {
  47. "@next/bundle-analyzer": "^13.2.3",
  48. "@testing-library/react": "^14.0.0",
  49. "@trivago/prettier-plugin-sort-imports": "^4.1.1",
  50. "@types/lodash.debounce": "^4.0.7",
  51. "@types/lz-string": "^1.3.34",
  52. "@types/node": "^18.15.0",
  53. "@types/react": "18.0.28",
  54. "@types/react-color": "^3.0.6",
  55. "@types/react-syntax-highlighter": "^15.5.6",
  56. "@types/styled-components": "^5.1.26",
  57. "eslint": "8.35.0",
  58. "eslint-config-next": "13.2.3",
  59. "eslint-plugin-unused-imports": "^2.0.0",
  60. "prettier": "^2.8.4",
  61. "ts-node": "^10.9.1",
  62. "typescript": "4.9.5"
  63. }
  64. }