package.json 988 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "web-rtc",
  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",
  11. "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
  12. },
  13. "dependencies": {
  14. "autoprefixer": "^10.4.13",
  15. "pinia": "^2.0.28",
  16. "postcss": "^8.4.20",
  17. "tailwindcss": "^3.2.4",
  18. "vue": "^3.2.45",
  19. "vue-router": "^4.1.6"
  20. },
  21. "devDependencies": {
  22. "@rushstack/eslint-patch": "^1.1.4",
  23. "@types/node": "^18.11.12",
  24. "@vitejs/plugin-vue": "^4.0.0",
  25. "@vue/eslint-config-prettier": "^7.0.0",
  26. "@vue/eslint-config-typescript": "^11.0.0",
  27. "@vue/tsconfig": "^0.1.3",
  28. "eslint": "^8.22.0",
  29. "eslint-plugin-vue": "^9.3.0",
  30. "npm-run-all": "^4.1.5",
  31. "prettier": "^2.7.1",
  32. "typescript": "~4.7.4",
  33. "vite": "^4.0.0",
  34. "vue-tsc": "^1.0.12"
  35. }
  36. }