package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "4dkankan-components",
  3. "description": "a collection of 4dkankan components",
  4. "private": true,
  5. "workspaces": [
  6. "packages/*",
  7. "apps/*"
  8. ],
  9. "scripts": {
  10. "docs": "doctoc --title '**Table of content**' README.md",
  11. "clean": "pnpm run -r clean",
  12. "build": "pnpm run -r build",
  13. "test": "pnpm run -r test",
  14. "lint": "eslint --ext js,ts . --fix",
  15. "commit": "git cz",
  16. "preinstall": "npx only-allow pnpm",
  17. "postinstall": "husky install",
  18. "changeset": "changeset",
  19. "version-packages": "changeset version"
  20. },
  21. "devDependencies": {
  22. "@changesets/cli": "^2.24.4",
  23. "@commitlint/cli": "^17.1.2",
  24. "@nighttrax/eslint-config-tsx": "~10.0.0",
  25. "@vitejs/plugin-vue": "^3.1.0",
  26. "@vitejs/plugin-vue-jsx": "^2.0.1",
  27. "@vue/test-utils": "^2.0.2",
  28. "commitizen": "^4.2.5",
  29. "commitlint-config-cz": "^0.13.3",
  30. "cz-customizable": "^7.0.0",
  31. "doctoc": "~2.2.0",
  32. "eslint": "~8.23.1",
  33. "eslint-config-prettier": "^8.5.0",
  34. "eslint-define-config": "^1.7.0",
  35. "eslint-plugin-import": "~2.26.0",
  36. "eslint-plugin-jest": "^25.7.0",
  37. "eslint-plugin-prettier": "^4.2.1",
  38. "eslint-plugin-vue": "^8.7.1",
  39. "husky": "^8.0.1",
  40. "jest": "^29.0.3",
  41. "lint-staged": "^13.0.3",
  42. "resize-observer-polyfill": "^1.5.1",
  43. "typescript": "~4.7.4",
  44. "unplugin-vue-macros": "^0.11.2",
  45. "vitest": "^0.23.4"
  46. },
  47. "lint-staged": {
  48. "*.{vue,js,ts,jsx,tsx,json}": [
  49. "eslint --fix"
  50. ]
  51. },
  52. "config": {
  53. "commitizen": {
  54. "path": "cz-customizable"
  55. }
  56. }
  57. }