package.json 586 B

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