package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "usky-ssr",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "node server",
  8. "dev:ssr": "cross-env NODE_ENV=development node server",
  9. "prod:ssr": "cross-env NODE_ENV=production node server",
  10. "build": "vue-tsc && vite build",
  11. "preview": "vite preview",
  12. "build:client": "vite build --outDir dist/client",
  13. "build:server": "vite build --outDir dist/server --ssr src/entry-server.ts"
  14. },
  15. "dependencies": {
  16. "axios": "^1.6.7",
  17. "element-plus": "^2.5.6",
  18. "vue": "^3.4.19",
  19. "vue-i18n": "^9.9.0",
  20. "vue-router": "^4.0.13"
  21. },
  22. "devDependencies": {
  23. "@typescript-eslint/eslint-plugin": "^6.21.0",
  24. "@vitejs/plugin-vue": "^5.0.4",
  25. "cross-env": "^7.0.3",
  26. "eslint": "^8.56.0",
  27. "eslint-config-standard-with-typescript": "^43.0.1",
  28. "eslint-plugin-import": "^2.29.1",
  29. "eslint-plugin-n": "^16.6.2",
  30. "eslint-plugin-promise": "^6.1.1",
  31. "eslint-plugin-vue": "^9.21.1",
  32. "express": "^4.18.3",
  33. "sass": "^1.71.1",
  34. "typescript": "^5.3.3",
  35. "unplugin-auto-import": "^0.17.5",
  36. "unplugin-vue-components": "^0.26.0",
  37. "vite": "^5.1.4",
  38. "vue-tsc": "^1.8.27"
  39. }
  40. }