Skip to content
This repository has been archived by the owner on May 14, 2022. It is now read-only.

Commit

Permalink
Add required project dependencies, update README.md, added vue config…
Browse files Browse the repository at this point in the history
… file.
  • Loading branch information
mirkopleli committed Nov 30, 2020
1 parent 2e2cf5b commit 85292ff
Show file tree
Hide file tree
Showing 8 changed files with 2,468 additions and 132 deletions.
3 changes: 3 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not dead
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
17 changes: 17 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/essential',
'@vue/standard'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
}
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Administration of [COVID-Bouncer](https://github.com/Sybit-Education/COVID-Bouncer)

[![Sybit](https://img.shields.io/badge/-Sybit-b71583.svg)](https://www.sybit.de/)
![Node.js CI](https://github.com/Sybit-Education/COVID-Bouncer-Admin/workflows/Node.js%20CI/badge.svg)
[![vue2](https://img.shields.io/badge/vue-2.x-brightgreen.svg)](https://vuejs.org/)
[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/Sybit-Education/COVID-Bouncer-Admin/blob/main/LICENSE)

Expand Down
2,501 changes: 2,394 additions & 107 deletions package-lock.json

Large diffs are not rendered by default.

63 changes: 39 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,57 @@
{
"name": "covid-bouncer-admin",
"name": "COVID-Bouncer-Admin",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
"lint": "vue-cli-service lint",
"test-deploy": "npm run build && firebase serve",
"deploy": "npm run build && firebase deploy"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/vue-fontawesome": "^2.0.0",
"bootstrap": "^4.5.3",
"bootstrap-vue": "^2.18.1",
"core-js": "^3.6.5",
"vue": "^2.6.11"
"dotenv": "^8.2.0",
"firebase": "^7.23.0",
"register-service-worker": "^1.7.1",
"vue": "^2.6.12",
"vue-radial-progress": "^0.3.2",
"vue-notification": "^1.3.20",
"vue-router": "^3.2.0",
"vuex": "^3.4.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-pwa": "^4.1.0",
"@vue/cli-plugin-router": "^4.1.0",
"@vue/cli-plugin-vuex": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.5.0",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
"gitHooks": {
"pre-commit": "lint-staged"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import App from './App.vue'
Vue.config.productionTip = false

new Vue({
render: h => h(App),
render: h => h(App)
}).$mount('#app')
8 changes: 8 additions & 0 deletions vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
pwa: {
name: 'COVID-Bouncer',
themeColor: '#b51783',
msTileColor: '#000000',
appleMobileWebAppCapable: 'yes'
}
}

0 comments on commit 85292ff

Please sign in to comment.