package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "enterprise-platform",
  3. "description": "企业端",
  4. "scripts": {
  5. "start": "rca start",
  6. "build": "rca build",
  7. "test": "rca test"
  8. },
  9. "license": "MIT",
  10. "repository": {
  11. "type": "git",
  12. "url": ""
  13. },
  14. "lint-staged": {
  15. "*.{js,jsx}": [
  16. "eslint --fix",
  17. "git add"
  18. ],
  19. "packages/**/*.{ts,d.ts}": [
  20. "npm run build:docs-api",
  21. "git adddocs"
  22. ]
  23. },
  24. "husky": {
  25. "hooks": {
  26. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
  27. "pre-commit": "lint-staged"
  28. }
  29. },
  30. "keywords": [],
  31. "author": "",
  32. "dependencies": {
  33. "@amap/amap-jsapi-loader": "^0.0.7",
  34. "@ant-design/icons": "^4.3.0",
  35. "@types/react": "^16.9.0",
  36. "@types/react-dom": "^16.9.0",
  37. "@types/react-router-dom": "^5.1.5",
  38. "antd": "^4.9.0",
  39. "axios": "^0.21.0",
  40. "core-js": "^3.8.1",
  41. "node-sass": "^5.0.0",
  42. "rca": "0.0.21",
  43. "react": "^17.0.1",
  44. "react-dom": "^17.0.1",
  45. "react-router-dom": "^5.2.0",
  46. "sass-loader": "^10.0.5",
  47. "vfile-location": "^3.2.0"
  48. },
  49. "devDependencies": {
  50. "@types/node": "^14.14.10",
  51. "@types/webpack-env": "^1.15.3",
  52. "babel-plugin-import": "^1.13.3",
  53. "typescript": "^3.9.7"
  54. }
  55. }