package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "goverment-front",
  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.0.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.2",
  39. "babel-plugin-import": "^1.13.3",
  40. "core-js": "^3.8.1",
  41. "echarts": "^5.0.0",
  42. "jparticles": "^2.0.1",
  43. "node-sass": "^5.0.0",
  44. "postcss-pxtorem": "^5.1.1",
  45. "rca": "0.0.19",
  46. "react": "^17.0.1",
  47. "react-dom": "^17.0.1",
  48. "react-router-dom": "^5.2.0",
  49. "sass-loader": "^10.0.5"
  50. },
  51. "devDependencies": {
  52. "@types/node": "^14.14.6",
  53. "@types/webpack-env": "^1.15.3",
  54. "typescript": "^3.9.7"
  55. }
  56. }