package.json 957 B

1234567891011121314151617181920212223242526272829303132333435
  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. "bootstrap": "^5.3.2",
  15. "fast-xml-parser": "^4.3.1",
  16. "jszip": "^3.10.1",
  17. "pinia": "^2.1.6",
  18. "vue": "^3.3.4"
  19. },
  20. "devDependencies": {
  21. "@rushstack/eslint-patch": "^1.4.0",
  22. "@tsconfig/node18": "^18.2.2",
  23. "@types/node": "^20.6.5",
  24. "@vitejs/plugin-vue": "^4.3.4",
  25. "@vue/eslint-config-typescript": "^12.0.0",
  26. "@vue/tsconfig": "^0.4.0",
  27. "eslint": "^8.50.0",
  28. "eslint-plugin-vue": "^9.17.0",
  29. "npm-run-all": "^4.1.5",
  30. "typescript": "~5.2.2",
  31. "vite": "^4.4.9",
  32. "vue-tsc": "^1.8.13"
  33. }
  34. }