package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "Platform",
  3. "version": "0.1.1",
  4. "private": true,
  5. "scripts": {
  6. "start": "node bootstrap",
  7. "dev": "vite",
  8. "build": "npm run build:client && npm run build:server",
  9. "build:client": "tsc && vite build",
  10. "build:server": "mw build",
  11. "serve": "vite preview",
  12. "test": "jest"
  13. },
  14. "dependencies": {
  15. "@midwayjs/hooks": "^2.2.2",
  16. "@midwayjs/koa": "^2.11.0",
  17. "animate.css": "^4.1.1",
  18. "animejs": "^3.2.1",
  19. "echarts": "^5.2.2",
  20. "element-plus": "^1.1.0-beta.24",
  21. "koa-bodyparser": "^4.3.0",
  22. "lodash": "^4.17.21",
  23. "mitt": "^3.0.0",
  24. "vue": "^3.2.16",
  25. "vue-router": "^4.0.12"
  26. },
  27. "devDependencies": {
  28. "@midwayjs/cli": "^1.2.71",
  29. "@midwayjs/cli-plugin-build": "^1.2.70",
  30. "@midwayjs/hooks-testing-library": "^2.2.2",
  31. "@midwayjs/vite-plugin-hooks": "^2.2.3",
  32. "@types/animejs": "^3.1.4",
  33. "@types/jest": "^26.0.23",
  34. "@types/koa-bodyparser": "^4.3.1",
  35. "@types/lodash": "^4.14.176",
  36. "@typescript-eslint/eslint-plugin": "^5.3.0",
  37. "@typescript-eslint/parser": "^5.3.0",
  38. "@vitejs/plugin-vue": "^1.9.3",
  39. "@vue/cli-plugin-eslint": "^4.5.15",
  40. "@vue/eslint-config-airbnb": "^5.3.0",
  41. "@vue/eslint-config-prettier": "^6.0.0",
  42. "@vue/eslint-config-typescript": "^9.0.1",
  43. "autoprefixer": "^10.4.0",
  44. "eslint": "^8.1.0",
  45. "eslint-plugin-prettier": "^4.0.0",
  46. "eslint-plugin-vue": "^8.0.3",
  47. "jest": "^26.6.3",
  48. "postcss": "^8.3.11",
  49. "sass": "^1.43.4",
  50. "tailwindcss": "^2.2.19",
  51. "typescript": "^4.4.3",
  52. "vite": "^2.6.4",
  53. "vue-tsc": "^0.3.0"
  54. }
  55. }