package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "name": "form-making-advanced",
  3. "description": "A designer and generator of form base on Vue.js, make form development simple and efficient.",
  4. "version": "1.6.15",
  5. "author": "GavinZhulei",
  6. "keywords": [
  7. "component",
  8. "vue",
  9. "form",
  10. "element-ui",
  11. "auto"
  12. ],
  13. "main": "dist/FormMaking.common.js",
  14. "scripts": {
  15. "serve": "vue-cli-service serve --open",
  16. "build": "vue-cli-service build",
  17. "lint": "vue-cli-service lint",
  18. "build-bundle": "vue-cli-service build --target lib --name FormMaking ./src/index.js",
  19. "editor-bundle": "vue-cli-service build --target lib --name Editor ./src/editorBundle.js",
  20. "docs:dev": "vuepress dev docs",
  21. "docs:build": "vuepress build docs"
  22. },
  23. "dependencies": {
  24. "@antv/g2": "^4.1.1",
  25. "ant-design-vue": "1.7.8",
  26. "axios": "^0.18.0",
  27. "clipboard": "^2.0.1",
  28. "codemirror": "5",
  29. "element-ui": "^2.15.7",
  30. "html2canvas": "^1.4.1",
  31. "jspdf": "^2.5.1",
  32. "lodash": "^4.17.15",
  33. "multiparty": "^4.2.1",
  34. "normalize.css": "^8.0.0",
  35. "qiniu": "^7.2.1",
  36. "qiniu-js": "^2.5.1",
  37. "vant": "^2.11.1",
  38. "viewerjs": "^1.2.0",
  39. "vue": "^2.6.14",
  40. "vue-i18n": "^8.27.2",
  41. "vue-router": "^3.0.1",
  42. "vue2-editor": "^2.10.0",
  43. "vuedraggable": "^2.24.3"
  44. },
  45. "devDependencies": {
  46. "@babel/core": "^7.0.1",
  47. "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
  48. "@babel/plugin-proposal-optional-chaining": "^7.16.7",
  49. "@types/ace": "0.0.42",
  50. "@vue/cli-plugin-babel": "^3.0.0",
  51. "@vue/cli-plugin-eslint": "^3.0.0",
  52. "@vue/cli-service": "^3.0.0",
  53. "@vuepress/plugin-back-to-top": "^1.2.0",
  54. "@vuepress/plugin-google-analytics": "^1.2.0",
  55. "babel-core": "^6.26.3",
  56. "babel-plugin-component": "^1.1.1",
  57. "babel-preset-es2015": "^6.24.1",
  58. "core-js": "2.6.12",
  59. "rollup": "^0.57.1",
  60. "rollup-plugin-babel": "^3.0.7",
  61. "rollup-plugin-buble": "^0.19.2",
  62. "rollup-plugin-uglify-es": "0.0.1",
  63. "rollup-plugin-vue": "^3.0.0",
  64. "sass": "^1.49.9",
  65. "sass-loader": "^8.0.2",
  66. "terser-webpack-plugin": "^1.2.4",
  67. "uglifyjs-webpack-plugin": "^2.0.1",
  68. "vue-template-compiler": "^2.6.14",
  69. "vuepress": "^1.2.0",
  70. "vue2-ace-editor": "0.0.15"
  71. },
  72. "babel": {
  73. "presets": [
  74. "@vue/app",
  75. [
  76. "@babel/preset-env",
  77. {
  78. "useBuiltIns": "entry"
  79. }
  80. ]
  81. ],
  82. "plugins": [
  83. "@babel/plugin-proposal-optional-chaining",
  84. "@babel/plugin-proposal-nullish-coalescing-operator"
  85. ]
  86. },
  87. "eslintConfig": {
  88. "root": true,
  89. "extends": [
  90. "plugin:vue/essential"
  91. ],
  92. "parserOptions": {
  93. "parser": "babel-eslint"
  94. }
  95. },
  96. "postcss": {
  97. "plugins": {
  98. "autoprefixer": {}
  99. }
  100. },
  101. "browserslist": [
  102. "> 1%",
  103. "last 2 versions",
  104. "not ie <= 8"
  105. ]
  106. }