package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "web",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "@ant-design/cssinjs": "^1.8.1",
  7. "@ant-design/icons": "^4.7.0",
  8. "@craco/craco": "^6.4.5",
  9. "@crowdin/cli": "^3.7.10",
  10. "@ctrl/tinycolor": "^3.5.0",
  11. "@emotion/react": "^11.10.5",
  12. "@testing-library/jest-dom": "^4.2.4",
  13. "@testing-library/react": "^9.3.2",
  14. "@testing-library/user-event": "^7.1.2",
  15. "antd": "5.2.3",
  16. "antd-token-previewer": "^1.1.0-22",
  17. "codemirror": "^5.61.1",
  18. "copy-to-clipboard": "^3.3.1",
  19. "core-js": "^3.25.0",
  20. "craco-less": "^2.0.0",
  21. "eslint-plugin-unused-imports": "^2.0.0",
  22. "file-saver": "^2.0.5",
  23. "i18n-iso-countries": "^7.0.0",
  24. "i18next": "^19.8.9",
  25. "libphonenumber-js": "^1.10.19",
  26. "moment": "^2.29.1",
  27. "qs": "^6.10.2",
  28. "react": "^18.2.0",
  29. "react-app-polyfill": "^3.0.0",
  30. "react-codemirror2": "^7.2.1",
  31. "react-cropper": "^2.1.7",
  32. "react-device-detect": "^2.2.2",
  33. "react-dom": "^18.2.0",
  34. "react-github-corner": "^2.5.0",
  35. "react-helmet": "^6.1.0",
  36. "react-highlight-words": "^0.18.0",
  37. "react-i18next": "^11.8.7",
  38. "react-router-dom": "^5.3.3",
  39. "react-scripts": "5.0.1",
  40. "react-social-login-buttons": "^3.4.0"
  41. },
  42. "scripts": {
  43. "start": "cross-env PORT=7001 craco start",
  44. "build": "craco build",
  45. "test": "craco test",
  46. "eject": "craco eject",
  47. "crowdin:sync": "crowdin upload && crowdin download",
  48. "preinstall": "node -e \"if (process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('Use yarn for installing: https://yarnpkg.com/en/docs/install')\"",
  49. "fix": "eslint --fix src/**/*.{js,jsx,ts,tsx}",
  50. "lint:css": "stylelint src/**/*.{css,less} --fix"
  51. },
  52. "eslintConfig": {
  53. "extends": "react-app"
  54. },
  55. "browserslist": {
  56. "production": [
  57. ">0.2%",
  58. "not dead",
  59. "not op_mini all",
  60. "ie > 8"
  61. ],
  62. "development": [
  63. "last 1 chrome version",
  64. "last 1 firefox version",
  65. "last 1 safari version",
  66. "ie > 8"
  67. ]
  68. },
  69. "devDependencies": {
  70. "@babel/core": "^7.18.13",
  71. "@babel/eslint-parser": "^7.18.9",
  72. "@babel/preset-react": "^7.18.6",
  73. "cross-env": "^7.0.3",
  74. "cypress": "^12.5.1",
  75. "eslint": "8.22.0",
  76. "eslint-plugin-react": "^7.31.1",
  77. "husky": "^4.3.8",
  78. "lint-staged": "^13.0.3",
  79. "stylelint": "^14.11.0",
  80. "stylelint-config-recommended-less": "^1.0.4",
  81. "stylelint-config-standard": "^28.0.0"
  82. },
  83. "lint-staged": {
  84. "src/**/*.{css,less}": [
  85. "stylelint --fix"
  86. ],
  87. "src/**/*.{js,jsx,ts,tsx}": [
  88. "eslint --fix"
  89. ]
  90. },
  91. "husky": {
  92. "hooks": {
  93. "pre-commit": "lint-staged"
  94. }
  95. }
  96. }