package.json 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. {
  2. "name": "ant-design-pro",
  3. "version": "4.0.0",
  4. "private": true,
  5. "description": "An out-of-box UI solution for enterprise applications",
  6. "scripts": {
  7. "analyze": "cross-env ANALYZE=1 umi build",
  8. "build": "umi build",
  9. "deploy": "npm run site && npm run gh-pages",
  10. "fetch:blocks": "pro fetch-blocks && npm run prettier",
  11. "gh-pages": "cp CNAME ./dist/ && gh-pages -d dist",
  12. "i18n-remove": "pro i18n-remove --locale=zh-CN --write",
  13. "lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
  14. "lint:prettier": "prettier --check \"**/*\" --end-of-line auto",
  15. "lint-staged": "lint-staged",
  16. "lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ",
  17. "lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src && npm run lint:style",
  18. "lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
  19. "lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
  20. "prettier": "prettier -c --write \"**/*\"",
  21. "start": "umi dev",
  22. "dev": "npm run start:dev",
  23. "start:dev": "cross-env REACT_APP_ENV=dev MOCK=none umi dev",
  24. "start:no-mock": "cross-env MOCK=none umi dev",
  25. "start:no-ui": "cross-env UMI_UI=none umi dev",
  26. "start:pre": "cross-env REACT_APP_ENV=pre MOCK=none umi dev",
  27. "start:test": "cross-env REACT_APP_ENV=test MOCK=none umi dev",
  28. "test": "umi test",
  29. "test:all": "node ./tests/run-tests.js",
  30. "test:component": "umi test ./src/components",
  31. "tsc": "tsc",
  32. "ui": "umi ui"
  33. },
  34. "husky": {
  35. "hooks": {
  36. "pre-commit": "npm run lint-staged"
  37. }
  38. },
  39. "lint-staged": {
  40. "**/*.less": "stylelint --syntax less",
  41. "**/*.{js,jsx,ts,tsx}": "npm run lint-staged:js",
  42. "**/*.{js,jsx,tsx,ts,less,md,json}": [
  43. "prettier --write"
  44. ]
  45. },
  46. "browserslist": [
  47. "> 1%",
  48. "last 2 versions",
  49. "not ie <= 10"
  50. ],
  51. "dependencies": {
  52. "@ant-design/pro-layout": "^4.10.13",
  53. "@antv/data-set": "^0.11.0",
  54. "@zjxpcyc/xrc-form2": "2.2.2",
  55. "antd": "^3.23.6",
  56. "classnames": "^2.2.6",
  57. "dva": "^2.6.0-beta.16",
  58. "lodash": "^4.17.11",
  59. "md5": "^2.3.0",
  60. "moment": "^2.24.0",
  61. "omit.js": "^1.0.2",
  62. "path-to-regexp": "2.4.0",
  63. "qs": "^6.9.0",
  64. "react": "^16.8.6",
  65. "react-copy-to-clipboard": "^5.0.1",
  66. "react-dom": "^16.8.6",
  67. "react-helmet": "^5.2.1",
  68. "redux": "^4.0.1",
  69. "umi": "^2.13.0",
  70. "umi-plugin-antd-theme": "^1.0.1",
  71. "umi-plugin-pro-block": "^1.3.2",
  72. "umi-plugin-react": "^1.9.5",
  73. "umi-request": "^1.0.8"
  74. },
  75. "devDependencies": {
  76. "@ant-design/pro-cli": "^1.0.18",
  77. "@types/classnames": "^2.2.7",
  78. "@types/express": "^4.17.0",
  79. "@types/history": "^4.7.2",
  80. "@types/jest": "^25.1.0",
  81. "@types/lodash": "^4.14.144",
  82. "@types/qs": "^6.5.3",
  83. "@types/react": "^16.8.19",
  84. "@types/react-dom": "^16.8.4",
  85. "@types/react-helmet": "^5.0.13",
  86. "@umijs/fabric": "^2.0.2",
  87. "chalk": "^3.0.0",
  88. "cross-env": "^7.0.0",
  89. "cross-port-killer": "^1.1.1",
  90. "enzyme": "^3.9.0",
  91. "express": "^4.17.1",
  92. "gh-pages": "^2.0.1",
  93. "husky": "^4.0.7",
  94. "jest-puppeteer": "^4.2.0",
  95. "jsdom-global": "^3.0.2",
  96. "lint-staged": "^10.0.0",
  97. "mockjs": "^1.0.1-beta3",
  98. "node-fetch": "^2.6.0",
  99. "prettier": "^1.19.1",
  100. "pro-download": "1.0.1",
  101. "stylelint": "^13.0.0",
  102. "umi-plugin-antd-icon-config": "^1.0.2",
  103. "umi-plugin-ga": "^1.1.3",
  104. "umi-plugin-pro": "^1.0.2",
  105. "umi-types": "^0.5.0"
  106. },
  107. "optionalDependencies": {
  108. "puppeteer": "^2.0.0"
  109. },
  110. "engines": {
  111. "node": ">=10.0.0"
  112. },
  113. "checkFiles": [
  114. "src/**/*.js*",
  115. "src/**/*.ts*",
  116. "src/**/*.less",
  117. "config/**/*.js*",
  118. "scripts/**/*.js"
  119. ]
  120. }