package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. },
  17. "devDependencies": {
  18. "@commitlint/cli": "^17.1.2",
  19. "@nighttrax/eslint-config-tsx": "~10.0.0",
  20. "commitizen": "^4.2.5",
  21. "commitlint-config-cz": "^0.13.3",
  22. "cz-customizable": "^7.0.0",
  23. "doctoc": "~2.2.0",
  24. "eslint": "~8.23.1",
  25. "eslint-config-prettier": "^8.5.0",
  26. "eslint-define-config": "^1.7.0",
  27. "eslint-plugin-import": "~2.26.0",
  28. "eslint-plugin-jest": "^25.7.0",
  29. "eslint-plugin-prettier": "^4.2.1",
  30. "eslint-plugin-vue": "^8.7.1",
  31. "husky": "^8.0.1",
  32. "jest": "^29.0.3",
  33. "typescript": "~4.7.4"
  34. },
  35. "config": {
  36. "commitizen": {
  37. "path": "cz-customizable"
  38. }
  39. }
  40. }