package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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.2.10",
  5. "author": "GavinZhulei",
  6. "license": "LGPL",
  7. "keywords": [
  8. "component",
  9. "vue",
  10. "form",
  11. "element-ui",
  12. "auto"
  13. ],
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/GavinZhuLei/vue-form-making"
  17. },
  18. "main": "dist/FormMaking.common.js",
  19. "scripts": {
  20. "serve": "vue-cli-service serve --open",
  21. "build": "vue-cli-service build",
  22. "lint": "vue-cli-service lint",
  23. "build-bundle": "vue-cli-service build --target lib --name FormMaking ./src/index.js",
  24. "docs:dev": "vuepress dev docs",
  25. "docs:build": "vuepress build docs"
  26. },
  27. "dependencies": {
  28. "ant-design-vue": "^1.4.10",
  29. "axios": "^0.18.0",
  30. "clipboard": "^2.0.1",
  31. "element-ui": "^2.13.0",
  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. "viewerjs": "^1.2.0",
  38. "vue": "^2.6.5",
  39. "vue-i18n": "^5.0.3",
  40. "vue-router": "^3.0.1",
  41. "vue2-editor": "^2.10.0",
  42. "vuedraggable": "^2.16.0"
  43. },
  44. "devDependencies": {
  45. "@babel/core": "^7.0.1",
  46. "@types/ace": "0.0.42",
  47. "@vue/cli-plugin-babel": "^3.0.0",
  48. "@vue/cli-plugin-eslint": "^3.0.0",
  49. "@vue/cli-service": "^3.0.0",
  50. "@vuepress/plugin-back-to-top": "^1.2.0",
  51. "@vuepress/plugin-google-analytics": "^1.2.0",
  52. "babel-core": "^6.26.3",
  53. "babel-plugin-component": "^1.1.1",
  54. "babel-preset-es2015": "^6.24.1",
  55. "core-js": "^2.6.5",
  56. "node-sass": "^4.9.0",
  57. "rollup": "^0.57.1",
  58. "rollup-plugin-babel": "^3.0.7",
  59. "rollup-plugin-buble": "^0.19.2",
  60. "rollup-plugin-uglify-es": "0.0.1",
  61. "rollup-plugin-vue": "^3.0.0",
  62. "sass-loader": "^7.0.1",
  63. "terser-webpack-plugin": "^1.2.4",
  64. "uglifyjs-webpack-plugin": "^2.0.1",
  65. "vue-template-compiler": "^2.6.5",
  66. "vuepress": "^1.2.0"
  67. },
  68. "babel": {
  69. "presets": [
  70. "@vue/app"
  71. ]
  72. },
  73. "eslintConfig": {
  74. "root": true,
  75. "extends": [
  76. "plugin:vue/essential"
  77. ],
  78. "parserOptions": {
  79. "parser": "babel-eslint"
  80. }
  81. },
  82. "postcss": {
  83. "plugins": {
  84. "autoprefixer": {}
  85. }
  86. },
  87. "browserslist": [
  88. "> 1%",
  89. "last 2 versions",
  90. "not ie <= 8"
  91. ]
  92. }