package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "opendevin-frontend",
  3. "version": "0.1.0",
  4. "private": true,
  5. "type": "module",
  6. "engines": {
  7. "node": ">=14.8.0"
  8. },
  9. "dependencies": {
  10. "@monaco-editor/react": "^4.6.0",
  11. "@nextui-org/react": "^2.2.10",
  12. "@react-types/shared": "^3.22.1",
  13. "@reduxjs/toolkit": "^2.2.2",
  14. "@vitejs/plugin-react": "^4.2.1",
  15. "@xterm/addon-fit": "^0.10.0",
  16. "@xterm/xterm": "^5.4.0",
  17. "clsx": "^2.1.0",
  18. "eslint-config-airbnb-typescript": "^18.0.0",
  19. "framer-motion": "^11.0.24",
  20. "i18next": "^23.10.1",
  21. "i18next-browser-languagedetector": "^7.2.1",
  22. "i18next-http-backend": "^2.5.0",
  23. "jose": "^5.2.3",
  24. "monaco-editor": "^0.47.0",
  25. "react": "^18.2.0",
  26. "react-accessible-treeview": "^2.8.3",
  27. "react-dom": "^18.2.0",
  28. "react-hot-toast": "^2.4.1",
  29. "react-i18next": "^14.1.0",
  30. "react-icons": "^5.0.1",
  31. "react-redux": "^9.1.0",
  32. "react-syntax-highlighter": "^15.5.0",
  33. "tailwind-merge": "^2.2.2",
  34. "vite": "^5.1.6",
  35. "web-vitals": "^2.1.4"
  36. },
  37. "scripts": {
  38. "start": "vite",
  39. "build": "tsc && vite build",
  40. "test": "vitest",
  41. "preview": "vite preview",
  42. "make-i18n": "node scripts/make-i18n-translations.cjs",
  43. "prelint": "npm run make-i18n",
  44. "lint": "eslint src/**/*.ts* && prettier --check src/**/*.ts*",
  45. "prepare": "cd .. && husky install frontend/.husky"
  46. },
  47. "husky": {
  48. "hooks": {
  49. "pre-commit": "lint-staged"
  50. }
  51. },
  52. "lint-staged": {
  53. "src/**/*.ts*": [
  54. "eslint --fix",
  55. "prettier --write"
  56. ]
  57. },
  58. "devDependencies": {
  59. "@testing-library/jest-dom": "^6.4.2",
  60. "@testing-library/react": "^13.4.0",
  61. "@testing-library/user-event": "^13.5.0",
  62. "@types/node": "^18.0.0 ",
  63. "@types/react": "^18.2.66",
  64. "@types/react-dom": "^18.2.22",
  65. "@types/react-syntax-highlighter": "^15.5.11",
  66. "@typescript-eslint/eslint-plugin": "^7.4.0",
  67. "@typescript-eslint/parser": "^7.0.0",
  68. "autoprefixer": "^10.4.19",
  69. "eslint": "^8.57.0",
  70. "eslint-config-airbnb": "^19.0.4",
  71. "eslint-config-airbnb-typescript": "^18.0.0",
  72. "eslint-config-prettier": "^9.1.0",
  73. "eslint-plugin-import": "^2.29.1",
  74. "eslint-plugin-jsx-a11y": "^6.8.0",
  75. "eslint-plugin-prettier": "^5.1.3",
  76. "eslint-plugin-react": "^7.34.1",
  77. "eslint-plugin-react-hooks": "^4.6.0",
  78. "husky": "^8.0.0",
  79. "jsdom": "^24.0.0",
  80. "lint-staged": "^15.2.2",
  81. "postcss": "^8.4.38",
  82. "prettier": "^3.2.5",
  83. "tailwindcss": "^3.4.2",
  84. "typescript": "^5.4.3",
  85. "vite-tsconfig-paths": "^4.3.2",
  86. "vitest": "^1.5.0"
  87. },
  88. "packageManager": "npm@10.5.0",
  89. "volta": {
  90. "node": "18.20.1"
  91. }
  92. }