package.json 413 B

1234567891011121314151617181920212223
  1. {
  2. "name": "uniAppXCX",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepare": "husky install"
  8. },
  9. "keywords": [],
  10. "author": "",
  11. "license": "ISC",
  12. "dependencies": {
  13. "husky": "^8.0.3",
  14. "lint-staged": "^15.1.0",
  15. "prettier": "^3.1.0"
  16. },
  17. "lint-staged": {
  18. "**/*.{js,vue,css,scss,less,html}": [
  19. "npm run prettier",
  20. "git add"
  21. ]
  22. }
  23. }