package.json 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "materio.com",
  3. "version": "1.1.0",
  4. "description": "A Drupal 8 Vuejs template using Webpack 4 for materio.com",
  5. "main": "index.js",
  6. "scripts": {
  7. "dev": "webpack --watch --config build/webpack.config.dev.js",
  8. "prod": "webpack --config build/webpack.config.prod.js",
  9. "lint": "eslint --ext .js,.vue src",
  10. "lint:fix": "eslint --ext .js,.vue src --fix",
  11. "test": "jest --config test/jest.config.js",
  12. "test:debug": "node --inspect node_modules/.bin/jest --runInBand --config test/jest.config.js",
  13. "postinstall": "patch --forward node_modules/slim-select/package.json < patches/slimselect-export-css.patch"
  14. },
  15. "keywords": [
  16. "Vue",
  17. "Webpack 4"
  18. ],
  19. "author": "Bachir Soussi Chiadmi",
  20. "license": "MIT",
  21. "dependencies": {
  22. "axios": "^0.21.0",
  23. "check-password-strength": "^1.0.15",
  24. "pretty-bytes": "^5.5.0",
  25. "vue": "^2.6.12",
  26. "vue-autofocus-directive": "^1.0.4",
  27. "vue-cool-lightbox": "^2.6.9",
  28. "vue-infinite-loading": "^2.4.5",
  29. "vue-router": "^3.4.9",
  30. "vue-vimeo-player": "^0.1.0",
  31. "vue-youtube-embed": "^2.2.2",
  32. "vue2-touch-events": "^3.2.1",
  33. "vuex": "^3.6.0"
  34. },
  35. "devDependencies": {
  36. "@babel/core": "^7.12.9",
  37. "@babel/plugin-syntax-dynamic-import": "^7.8.3",
  38. "@babel/preset-env": "^7.12.7",
  39. "@kazupon/vue-i18n-loader": "^0.5.0",
  40. "@vue/test-utils": "^1.1.1",
  41. "babel-core": "^7.0.0-bridge.0",
  42. "babel-eslint": "^10.1.0",
  43. "babel-jest": "^26.6.3",
  44. "babel-loader": "^8.2.1",
  45. "compression-webpack-plugin": "^8.0.0",
  46. "copy-webpack-plugin": "^6.3.2",
  47. "css-loader": "^5.0.1",
  48. "eslint": "^7.14.0",
  49. "eslint-config-prettier": "^6.15.0",
  50. "eslint-config-standard": "^16.0.2",
  51. "eslint-plugin-import": "^2.22.1",
  52. "eslint-plugin-jsx-a11y": "^6.4.1",
  53. "eslint-plugin-no-autofix": "^1.0.1",
  54. "eslint-plugin-node": "^11.1.0",
  55. "eslint-plugin-prettier": "^3.1.4",
  56. "eslint-plugin-promise": "^4.2.1",
  57. "eslint-plugin-standard": "^5.0.0",
  58. "eslint-plugin-vue": "^7.1.0",
  59. "eslint-plugin-vue-a11y": "0.0.31",
  60. "eslint-webpack-plugin": "^2.4.0",
  61. "file-loader": "^6.2.0",
  62. "graphql": "^15.4.0",
  63. "graphql-tag": "^2.11.0",
  64. "lodash": "^4.17.20",
  65. "mini-css-extract-plugin": "^1.3.1",
  66. "node-sass": "^5.0.0",
  67. "querystring-es3": "^0.2.1",
  68. "sass-loader": "^10.1.0",
  69. "slim-select": "^1.27.0",
  70. "style-loader": "^2.0.0",
  71. "uglify-es": "^3.3.9",
  72. "uglifyjs-webpack-plugin": "^2.2.0",
  73. "url-loader": "^4.1.1",
  74. "vue-eslint-parser": "^7.1.1",
  75. "vue-i18n": "^8.22.2",
  76. "vue-jest": "^3.0.7",
  77. "vue-js-modal": "^2.0.0-rc.6",
  78. "vue-loader": "^15.9.5",
  79. "vue-meta": "^2.4.0",
  80. "vue-server-renderer": "^2.6.12",
  81. "vue-simple-accordion": "^0.1.0",
  82. "vue-style-loader": "^4.1.2",
  83. "vue-template-compiler": "^2.6.12",
  84. "vuex-extensions": "^1.1.5",
  85. "webpack": "^5.6.0",
  86. "webpack-bundle-analyzer": "^4.4.0",
  87. "webpack-cli": "^4.2.0",
  88. "webpack-extraneous-file-cleanup-plugin": "^2.0.0",
  89. "webpack-merge": "^5.4.0"
  90. }
  91. }