package.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. {
  2. "name": "it-tools",
  3. "version": "2024.5.13-a0bc346",
  4. "description": "Collection of handy online tools for developers, with great UX. ",
  5. "keywords": [
  6. "productivity",
  7. "converter",
  8. "website",
  9. "vuejs",
  10. "tools",
  11. "frontend",
  12. "tool",
  13. "developer-tools",
  14. "developer-productivity"
  15. ],
  16. "author": "Corentin Th <corentin.thomasset74+it-tools@gmail.com> (https://github.com/CorentinTh)",
  17. "license": "GNU GPLv3",
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/CorentinTh/it-tools"
  21. },
  22. "scripts": {
  23. "dev": "vite",
  24. "build": "vue-tsc --noEmit && NODE_OPTIONS=--max_old_space_size=4096 vite build",
  25. "preview": "vite preview --port 5050",
  26. "test": "npm run test:unit",
  27. "test:unit": "vitest --environment jsdom",
  28. "test:e2e": "playwright test",
  29. "test:e2e:dev": "BASE_URL=http://localhost:5173 NO_WEB_SERVER=true playwright test",
  30. "coverage": "vitest run --coverage",
  31. "typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
  32. "lint": "eslint src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
  33. "script:create:tool": "node scripts/create-tool.mjs",
  34. "script:create:ui": "hygen generator ui-component",
  35. "release": "node ./scripts/release.mjs"
  36. },
  37. "dependencies": {
  38. "@it-tools/bip39": "^0.0.4",
  39. "@it-tools/oggen": "^1.3.0",
  40. "@sindresorhus/slugify": "^2.2.1",
  41. "@tiptap/pm": "2.1.6",
  42. "@tiptap/starter-kit": "2.1.6",
  43. "@tiptap/vue-3": "2.0.3",
  44. "@types/figlet": "^1.5.8",
  45. "@vicons/material": "^0.12.0",
  46. "@vicons/tabler": "^0.12.0",
  47. "@vueuse/core": "^10.3.0",
  48. "@vueuse/head": "^1.0.0",
  49. "@vueuse/router": "^10.0.0",
  50. "bcryptjs": "^2.4.3",
  51. "change-case": "^4.1.2",
  52. "colord": "^2.9.3",
  53. "composerize-ts": "^0.6.2",
  54. "country-code-lookup": "^0.1.0",
  55. "cron-validator": "^1.3.1",
  56. "cronstrue": "^2.26.0",
  57. "crypto-js": "^4.1.1",
  58. "date-fns": "^2.29.3",
  59. "dompurify": "^3.0.6",
  60. "emojilib": "^3.0.10",
  61. "figlet": "^1.7.0",
  62. "figue": "^1.2.0",
  63. "fuse.js": "^6.6.2",
  64. "highlight.js": "^11.7.0",
  65. "iarna-toml-esm": "^3.0.5",
  66. "ibantools": "^4.3.3",
  67. "js-base64": "^3.7.6",
  68. "json5": "^2.2.3",
  69. "jwt-decode": "^3.1.2",
  70. "libphonenumber-js": "^1.10.28",
  71. "lodash": "^4.17.21",
  72. "marked": "^10.0.0",
  73. "mathjs": "^11.9.1",
  74. "mime-types": "^2.1.35",
  75. "monaco-editor": "^0.43.0",
  76. "naive-ui": "^2.35.0",
  77. "netmask": "^2.0.2",
  78. "node-forge": "^1.3.1",
  79. "oui-data": "^1.0.10",
  80. "pdf-signature-reader": "^1.4.2",
  81. "pinia": "^2.0.34",
  82. "plausible-tracker": "^0.3.8",
  83. "qrcode": "^1.5.1",
  84. "sql-formatter": "^13.0.0",
  85. "ua-parser-js": "^1.0.35",
  86. "ulid": "^2.3.0",
  87. "unicode-emoji-json": "^0.4.0",
  88. "unplugin-auto-import": "^0.16.4",
  89. "uuid": "^9.0.0",
  90. "vue": "^3.3.4",
  91. "vue-i18n": "^9.9.1",
  92. "vue-router": "^4.1.6",
  93. "vue-tsc": "^1.8.1",
  94. "xml-formatter": "^3.3.2",
  95. "yaml": "^2.2.1"
  96. },
  97. "devDependencies": {
  98. "@antfu/eslint-config": "^0.41.0",
  99. "@iconify-json/mdi": "^1.1.50",
  100. "@intlify/unplugin-vue-i18n": "^2.0.0",
  101. "@playwright/test": "^1.32.3",
  102. "@rushstack/eslint-patch": "^1.2.0",
  103. "@tsconfig/node18": "^18.2.0",
  104. "@types/bcryptjs": "^2.4.2",
  105. "@types/crypto-js": "^4.1.1",
  106. "@types/dompurify": "^3.0.5",
  107. "@types/jsdom": "^21.0.0",
  108. "@types/lodash": "^4.14.192",
  109. "@types/mime-types": "^2.1.1",
  110. "@types/netmask": "^2.0.0",
  111. "@types/node": "^18.15.11",
  112. "@types/node-forge": "^1.3.2",
  113. "@types/qrcode": "^1.5.0",
  114. "@types/ua-parser-js": "^0.7.36",
  115. "@types/uuid": "^9.0.0",
  116. "@unocss/eslint-config": "^0.57.0",
  117. "@vitejs/plugin-vue": "^4.3.2",
  118. "@vitejs/plugin-vue-jsx": "^3.0.2",
  119. "@vue/compiler-sfc": "^3.2.47",
  120. "@vue/runtime-dom": "^3.3.4",
  121. "@vue/test-utils": "^2.3.2",
  122. "@vue/tsconfig": "^0.4.0",
  123. "consola": "^3.0.2",
  124. "eslint": "^8.47.0",
  125. "hygen": "^6.2.11",
  126. "jsdom": "^22.0.0",
  127. "less": "^4.1.3",
  128. "prettier": "^3.0.0",
  129. "typescript": "~5.2.0",
  130. "unocss": "^0.57.0",
  131. "unocss-preset-scrollbar": "^0.2.1",
  132. "unplugin-icons": "^0.17.0",
  133. "unplugin-vue-components": "^0.25.0",
  134. "vite": "^4.4.9",
  135. "vite-plugin-pwa": "^0.16.0",
  136. "vite-plugin-vue-markdown": "^0.23.5",
  137. "vite-svg-loader": "^4.0.0",
  138. "vitest": "^0.34.0",
  139. "workbox-window": "^7.0.0",
  140. "zx": "^7.2.1"
  141. }
  142. }