package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "musare-frontend",
  3. "version": "0.0.0",
  4. "description": "A modern, open-source, collaborative music app https://musare.com",
  5. "main": "main.js",
  6. "author": "Musare Team",
  7. "license": "GPL-3.0",
  8. "repository": "https://github.com/Musare/MusareNode",
  9. "scripts": {
  10. "lint": "npx eslint . --ext .js,.vue",
  11. "dev": "webpack-dev-server --config webpack.dev.js",
  12. "prod": "webpack --config webpack.prod.js"
  13. },
  14. "devDependencies": {
  15. "@babel/core": "^7.5.4",
  16. "@babel/plugin-proposal-object-rest-spread": "^7.5.4",
  17. "@babel/plugin-syntax-dynamic-import": "^7.2.0",
  18. "@babel/plugin-transform-runtime": "^7.5.0",
  19. "@babel/preset-env": "^7.5.4",
  20. "babel-eslint": "^10.0.2",
  21. "babel-loader": "^8.0.6",
  22. "css-loader": "^3.0.0",
  23. "eslint": "5.3.0",
  24. "eslint-config-airbnb-base": "13.2.0",
  25. "eslint-config-prettier": "^6.0.0",
  26. "eslint-loader": "^2.2.1",
  27. "eslint-plugin-import": "^2.17.2",
  28. "eslint-plugin-prettier": "^3.1.0",
  29. "eslint-plugin-vue": "^5.2.3",
  30. "fetch": "^1.1.0",
  31. "node-sass": "^4.12.0",
  32. "prettier": "1.18.2",
  33. "sass-loader": "^7.1.0",
  34. "vue-hot-reload-api": "^2.3.3",
  35. "vue-html-loader": "^1.2.4",
  36. "vue-style-loader": "^4.1.2",
  37. "vue-template-compiler": "^2.6.10",
  38. "webpack": "^4.35.3",
  39. "webpack-cli": "^3.3.5",
  40. "webpack-dev-server": "^3.7.2"
  41. },
  42. "dependencies": {
  43. "@babel/runtime": "^7.5.4",
  44. "chart.js": "^2.5.0",
  45. "vue": "^2.6.10",
  46. "vue-roaster": "^1.1.1",
  47. "vue-router": "^3.0.7",
  48. "vuex": "^3.1.1",
  49. "html-webpack-plugin": "^3.2.0",
  50. "vue-loader": "^15.7.0",
  51. "webpack-md5-hash": "0.0.6",
  52. "webpack-merge": "^4.2.1",
  53. "config": "^3.2.2"
  54. }
  55. }