Skip to content

Commit

Permalink
upgrade package versions and eslint config for Materialfy#80
Browse files Browse the repository at this point in the history
  • Loading branch information
justb4 committed Nov 29, 2021
1 parent 4aa3f18 commit 6011832
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 19 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ module.exports = {
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'template-curly-spacing': 'off',
'indent': 'off',
'vue/multi-word-component-names': ['error', {
'ignores': ['Footer', 'Error', 'Calendar', 'Notifications', 'Settings', 'Toasts', 'apexchart', 'Dash']
}]
},
parserOptions: {
parser: 'babel-eslint',
parser: '@babel/eslint-parser',
'sourceType': 'module',
'requireConfigFile': false
},
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Using the Dashboard is pretty simple but requires basic knowledge of Javascript,
5. Open your terminal(CMD/Power Shell etc) to project root( or use Shift + right-click in the folder on windows)
6. at project root (/M-Dashboard) run one of the following commands in the terminal depending on which you use:
- `npm install`, or `yarn install`if you use [Yarn](https://yarnpkg.com/en/)
- use `npm install --legacy-peer-deps` if getting dependency fatal errors (see issue #80)
7. Run `npm run dev --open` or `yarn serve --open` to start a local development server or use [Vue UI](https://cli.vuejs.org/guide/creating-a-project.html#using-the-gui)
8. A new tab will be opened in your browser or click the url in the terminal
9. You can use [Reqres](https://reqres.in/) to test logging in/out, or for data tables api(its already hooked up)
Expand Down
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,35 +11,35 @@
"dependencies": {
"@sentry/tracing": "^6.9.0",
"@sentry/vue": "^6.9.0",
"apexcharts": "^3.27.2",
"axios": "^0.21.1",
"apexcharts": "^3.31.0",
"axios": "^0.24.0",
"chartist": "0.11.4",
"eslint-plugin-prettier": "^3.4.0",
"material-design-icons-iconfont": "^6.1.0",
"node-sass": "4.14.1",
"eslint-plugin-prettier": "^4.0.0",
"material-design-icons-iconfont": "^6.1.1",
"sass": "1.43.5",
"nprogress": "^0.2.0",
"secure-ls": "^1.2.6",
"vue": "^2.6.14",
"vue-apexcharts": "^1.6.1",
"vue-apexcharts": "^1.6.2",
"vue-chartist": "^2.3.1",
"vue-meta": "^2.4.0",
"vue-router": "^3.5.1",
"vuetify": "2.5.5",
"vue-router": "^3.5.3",
"vuetify": "2.6.0",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@mdi/font": "^5.9.55",
"@mdi/js": "^5.9.55",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"babel-eslint": "^10.1.0",
"eslint": "7.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-vue": "^7.11.1",
"eslint-plugin-vuetify": "^1.0.1",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "^5.0.0-beta.7",
"@vue/cli-service": "^4.5.15",
"@babel/eslint-parser": "^7.16.3",
"eslint": "8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-vue": "^8.1.1",
"eslint-plugin-vuetify": "^1.1.0",
"prettier": "^2.3.1",
"sass": "~1.32.0",
"sass-loader": "^10.0.0",
Expand All @@ -50,6 +50,6 @@
"vue-i18n": "^8.24.4",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.0",
"vuex-persistedstate": "^4.0.0-beta.3"
"vuex-persistedstate": "^4.1.0"
}
}

0 comments on commit 6011832

Please sign in to comment.