package.json 1022 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "modtool",
  3. "version": "0.0.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "vite",
  7. "build": "run-p type-check build-only",
  8. "preview": "vite preview",
  9. "build-only": "vite build",
  10. "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
  11. "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
  12. },
  13. "dependencies": {
  14. "@guolao/vue-monaco-editor": "^1.3.0",
  15. "bootstrap": "^5.3.2",
  16. "fast-xml-parser": "^4.3.1",
  17. "jszip": "^3.10.1",
  18. "pinia": "^2.1.6",
  19. "vue": "^3.3.4",
  20. "yaml": "^2.3.2"
  21. },
  22. "devDependencies": {
  23. "@rushstack/eslint-patch": "^1.4.0",
  24. "@tsconfig/node18": "^18.2.2",
  25. "@types/node": "^20.6.5",
  26. "@vitejs/plugin-vue": "^4.3.4",
  27. "@vue/eslint-config-typescript": "^12.0.0",
  28. "@vue/tsconfig": "^0.4.0",
  29. "eslint": "^8.50.0",
  30. "eslint-plugin-vue": "^9.17.0",
  31. "npm-run-all": "^4.1.5",
  32. "typescript": "~5.2.2",
  33. "vite": "^4.4.9",
  34. "vue-tsc": "^1.8.13"
  35. }
  36. }