package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "raex",
  3. "version": "1.0.0",
  4. "main": "dist/main/index.cjs",
  5. "author": "RAEX",
  6. "license": "MIT",
  7. "scripts": {
  8. "dev": "node scripts/watch.mjs",
  9. "prebuild": "node scripts/build.mjs $MODE",
  10. "build": "electron-builder",
  11. "init": "git config core.hooksPath .git/hooks/ && rm -rf .git/hooks && npx simple-git-hooks",
  12. "test:e2e": "npx playwright test",
  13. "test:e2e:headless": "npx playwright test --headed"
  14. },
  15. "engines": {
  16. "node": ">=14.17.0"
  17. },
  18. "devDependencies": {
  19. "@playwright/test": "^1.22.2",
  20. "@vitejs/plugin-vue": "^2.3.2",
  21. "electron": "19.0.1",
  22. "electron-builder": "^23.0.3",
  23. "nano-staged": "^0.8.0",
  24. "simple-git-hooks": "^2.8.0",
  25. "typescript": "^4.7.2",
  26. "vite-plugin-electron": "^0.4.5",
  27. "vite-plugin-resolve": "^2.1.2",
  28. "vue": "^3.2.36",
  29. "vue-tsc": "^0.35.2",
  30. "@volar-plugins/prettier": "^1.1.4",
  31. "@vue/eslint-config-prettier": "^7.0.0",
  32. "eslint": "^8.5.0",
  33. "eslint-plugin-vue": "^8.2.0",
  34. "less": "^4.1.3",
  35. "less-loader": "^11.0.0",
  36. "prettier": "^2.5.1",
  37. "sass-loader": "^13.0.0",
  38. "vite": "^2.9.9",
  39. "@rushstack/eslint-patch": "^1.1.0",
  40. "axios": "^0.27.2",
  41. "crypto-js": "^4.1.1",
  42. "date-fns": "^2.28.0",
  43. "element-plus": "^2.2.5",
  44. "feather-icons": "^4.29.0",
  45. "pinia": "^2.0.14",
  46. "qs": "^6.10.5",
  47. "sass": "^1.52.3",
  48. "vue-feather": "^2.0.0",
  49. "vue-lazyload": "^3.0.0-rc.2",
  50. "vue-router": "^4.0.15",
  51. "vue-virtualised": "^0.1.8"
  52. },
  53. "env": {
  54. "VITE_DEV_SERVER_HOST": "127.0.0.1",
  55. "VITE_DEV_SERVER_PORT": 3344
  56. },
  57. "keywords": [
  58. "electron",
  59. "rollup",
  60. "vite",
  61. "vue3",
  62. "vue"
  63. ]
  64. }