package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "open-workspace",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "vue-cli-service build && npm run copyrelease",
  8. "copyrelease": "node script/copy.js dist/output.html ../open-server/src/main/resources/static work.html",
  9. "lint": "vue-cli-service lint"
  10. },
  11. "dependencies": {
  12. "axios": "^0.27.2",
  13. "core-js": "^3.6.5",
  14. "dsbridge": "^3.1.4",
  15. "vue": "^2.6.11",
  16. "vuex": "^3.0.1"
  17. },
  18. "devDependencies": {
  19. "@vue/cli-plugin-babel": "~4.5.4",
  20. "@vue/cli-plugin-eslint": "~4.5.4",
  21. "@vue/cli-service": "~4.5.4",
  22. "babel-eslint": "^10.1.0",
  23. "eslint": "^6.7.2",
  24. "eslint-plugin-vue": "^6.2.2",
  25. "html-webpack-inline-source-plugin": "^1.0.0-beta.2",
  26. "html-webpack-plugin": "^4.5.2",
  27. "vue-template-compiler": "^2.6.11",
  28. "copy-dir": "^1.3.0",
  29. "cpy-cli": "^3.1.1",
  30. "del-cli": "^3.0.1",
  31. "shelljs": "^0.7.6"
  32. },
  33. "eslintConfig": {
  34. "root": true,
  35. "env": {
  36. "node": true
  37. },
  38. "extends": [
  39. "plugin:vue/essential",
  40. "eslint:recommended"
  41. ],
  42. "parserOptions": {
  43. "parser": "babel-eslint"
  44. },
  45. "rules": {
  46. "no-unused-vars": "off",
  47. "no-undef": "off"
  48. }
  49. },
  50. "browserslist": [
  51. "> 1%",
  52. "last 2 versions",
  53. "not dead"
  54. ]
  55. }