package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "examcloud-student-clinet-v3",
  3. "private": true,
  4. "version": "3.0.0",
  5. "scripts": {
  6. "start": "vite --host 0.0.0.0",
  7. "dev": "vite",
  8. "prebuild": "node --experimental-json-modules prebuild.mjs",
  9. "build": "vue-tsc --noEmit --skipLibCheck && vite build",
  10. "build-without-type-check": "vite build",
  11. "typecheck": "vue-tsc --noEmit --skipLibCheck",
  12. "serve": "vite preview",
  13. "lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src",
  14. "format": "prettier --ignore-path .gitignore . --write"
  15. },
  16. "dependencies": {
  17. "@vitejs/plugin-legacy": "^1.7.1",
  18. "axios": "^0.26.0",
  19. "axios-progress-bar": "^1.2.0",
  20. "axios-retry": "^3.2.4",
  21. "js-sls-logger": "^2.0.0-beta.2",
  22. "lodash-es": "^4.17.21",
  23. "moment": "^2.29.1",
  24. "naive-ui": "^2.26.1",
  25. "pinia": "^2.0.11",
  26. "tailwindcss": "^3.0.23",
  27. "ua-parser-js": "^1.0.2",
  28. "vfonts": "^0.0.3",
  29. "vue": "^3.2.31",
  30. "vue-router": "^4.0.13"
  31. },
  32. "devDependencies": {
  33. "@types/lodash-es": "^4.17.6",
  34. "@types/node": "^17.0.21",
  35. "@types/ua-parser-js": "^0.7.36",
  36. "@typescript-eslint/eslint-plugin": "^5.13.0",
  37. "@typescript-eslint/parser": "^5.13.0",
  38. "@vitejs/plugin-vue": "^2.2.4",
  39. "autoprefixer": "^10.4.2",
  40. "eslint": "^8.10.0",
  41. "eslint-config-prettier": "^8.5.0",
  42. "eslint-plugin-vue": "^8.5.0",
  43. "postcss": "^8.4.8",
  44. "prettier": "^2.5.1",
  45. "typescript": "^4.6.2",
  46. "unplugin-auto-import": "^0.6.1",
  47. "unplugin-vue-components": "^0.17.21",
  48. "vite": "^2.8.6",
  49. "vue-eslint-parser": "^8.3.0",
  50. "vue-tsc": "^0.32.1"
  51. }
  52. }