package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "vue": "^3.2.16",
  23. "vue-router": "^4.0.12"
  24. },
  25. "devDependencies": {
  26. "@midwayjs/cli": "^1.2.71",
  27. "@midwayjs/cli-plugin-build": "^1.2.70",
  28. "@midwayjs/hooks-testing-library": "^2.2.2",
  29. "@midwayjs/vite-plugin-hooks": "^2.2.3",
  30. "@types/animejs": "^3.1.4",
  31. "@types/jest": "^26.0.23",
  32. "@types/koa-bodyparser": "^4.3.1",
  33. "@typescript-eslint/eslint-plugin": "^5.3.0",
  34. "@typescript-eslint/parser": "^5.3.0",
  35. "@vitejs/plugin-vue": "^1.9.3",
  36. "@vue/cli-plugin-eslint": "^4.5.15",
  37. "@vue/eslint-config-airbnb": "^5.3.0",
  38. "@vue/eslint-config-prettier": "^6.0.0",
  39. "@vue/eslint-config-typescript": "^9.0.1",
  40. "autoprefixer": "^10.4.0",
  41. "eslint": "^8.1.0",
  42. "eslint-plugin-prettier": "^4.0.0",
  43. "eslint-plugin-vue": "^8.0.3",
  44. "jest": "^26.6.3",
  45. "postcss": "^8.3.11",
  46. "sass": "^1.43.4",
  47. "tailwindcss": "^2.2.19",
  48. "typescript": "^4.4.3",
  49. "vite": "^2.6.4",
  50. "vue-tsc": "^0.3.0"
  51. }
  52. }