-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Access has been restricted
You have triggered a rate limit.
Please wait a few minutes before you try again;
in some cases this may take up to an hour.
0 parents
commit 5ef0f67
Showing
165 changed files
with
58,240 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
module.exports = { | ||
root: true, | ||
|
||
parserOptions: { | ||
parser: 'babel-eslint', | ||
sourceType: 'module' | ||
}, | ||
|
||
env: { | ||
browser: true | ||
}, | ||
|
||
extends: [ | ||
// https://eslint.vuejs.org/rules/#priority-a-essential-error-prevention | ||
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules. | ||
'plugin:vue/essential', | ||
'@vue/standard' | ||
], | ||
|
||
// required to lint *.vue files | ||
plugins: [ | ||
'vue' | ||
], | ||
|
||
globals: { | ||
'ga': true, // Google Analytics | ||
'cordova': true, | ||
'__statics': true, | ||
'process': true, | ||
'Capacitor': true, | ||
'chrome': true | ||
}, | ||
|
||
// add your custom rules here | ||
rules: { | ||
// allow async-await | ||
'generator-star-spacing': 'off', | ||
// allow paren-less arrow functions | ||
'arrow-parens': 'off', | ||
'one-var': 'off', | ||
|
||
'import/first': 'off', | ||
'import/named': 'error', | ||
'import/namespace': 'error', | ||
'import/default': 'error', | ||
'import/export': 'error', | ||
'import/extensions': 'off', | ||
'import/no-unresolved': 'off', | ||
'import/no-extraneous-dependencies': 'off', | ||
'prefer-promise-reject-errors': 'off', | ||
|
||
// allow debugger during development only | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
.DS_Store | ||
.thumbs.db | ||
node_modules | ||
|
||
# Quasar core related directories | ||
.quasar | ||
/dist | ||
|
||
# Cordova related directories and files | ||
/src-cordova/node_modules | ||
/src-cordova/platforms | ||
/src-cordova/plugins | ||
/src-cordova/www | ||
|
||
# Capacitor related directories and files | ||
/src-capacitor/www | ||
/src-capacitor/node_modules | ||
|
||
# BEX related directories and files | ||
/src-bex/www | ||
/src-bex/js/core | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
/src/extensions/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// https://github.com/michael-ciniawsky/postcss-load-config | ||
|
||
module.exports = { | ||
plugins: [ | ||
// to edit target browsers: use "browserslist" field in package.json | ||
require('autoprefixer') | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"blocks": "never", | ||
"brackets": "never", | ||
"colons": "never", | ||
"colors": "always", | ||
"commaSpace": "always", | ||
"commentSpace": "always", | ||
"cssLiteral": "never", | ||
"depthLimit": false, | ||
"duplicates": true, | ||
"efficient": "always", | ||
"extendPref": false, | ||
"globalDupe": true, | ||
"indentPref": 2, | ||
"leadingZero": "never", | ||
"maxErrors": false, | ||
"maxWarnings": false, | ||
"mixed": false, | ||
"namingConvention": false, | ||
"namingConventionStrict": false, | ||
"none": "never", | ||
"noImportant": false, | ||
"parenSpace": "never", | ||
"placeholder": false, | ||
"prefixVarsWithDollar": "always", | ||
"quotePref": "single", | ||
"semicolons": "never", | ||
"sortOrder": false, | ||
"stackedProperties": "never", | ||
"trailingWhitespace": "never", | ||
"universal": "never", | ||
"valid": true, | ||
"zeroUnits": "never", | ||
"zIndexNormalize": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# eosDAC Member Client (eosdac-client) | ||
|
||
Member client for eosDAC upgraded to quasar 1.x | ||
|
||
## Install the dependencies | ||
```bash | ||
yarn | ||
``` | ||
|
||
### Start the app in development mode (hot-code reloading, error reporting, etc.) | ||
```bash | ||
quasar dev | ||
``` | ||
|
||
### Lint the files | ||
```bash | ||
yarn run lint | ||
``` | ||
|
||
### Build the app for production | ||
```bash | ||
quasar build | ||
``` | ||
|
||
### Customize the configuration | ||
See [Configuring quasar.conf.js](https://quasar.dev/quasar-cli/quasar-conf-js). |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
presets: [ | ||
'@quasar/babel-preset-app' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"name": "eosdac-client", | ||
"version": "0.0.1", | ||
"description": "Member client for eosDAC upgraded to quasar 1.x", | ||
"productName": "eosDAC Member Client", | ||
"cordovaId": "org.cordova.quasar.app", | ||
"capacitorId": "", | ||
"author": "Michael Yeates <michael@eosdac.io>", | ||
"private": true, | ||
"scripts": { | ||
"lint": "eslint --fix --ext .js,.vue src", | ||
"test": "echo \"No test specified\" && exit 0", | ||
"dev": "quasar dev", | ||
"build": "quasar build", | ||
"build:pwa": "quasar build -m pwa" | ||
}, | ||
"dependencies": { | ||
"@chenfengyuan/vue-countdown": "^1.1.4", | ||
"@formatjs/intl-relativetimeformat": "^4.5.1", | ||
"@formatjs/intl-utils": "^1.6.0", | ||
"@quasar/extras": "^1.0.0", | ||
"@scatterjs/core": "^2.7.48", | ||
"@scatterjs/eosjs2": "^1.5.30", | ||
"@scatterjs/lynx": "^1.6.41", | ||
"axios": "^0.18.1", | ||
"chart.js": "^2.9.3", | ||
"crypto-js": "^3.1.9-1", | ||
"eosjs": "^20.0.0", | ||
"jquery": "^3.4.1", | ||
"json-pretty-html": "^1.1.6", | ||
"marked": "^0.8.0", | ||
"quasar": "^1.0.0", | ||
"sanitize-html": "^1.20.1", | ||
"simplemde": "^1.11.2", | ||
"text-encoding": "^0.7.0", | ||
"turndown": "^5.0.3", | ||
"v-markdown-editor": "^1.1.9", | ||
"vue-chartjs": "^3.5.0", | ||
"vue-i18n": "^8.0.0", | ||
"vue2-editor": "^2.10.2", | ||
"vuedraggable": "^2.23.2", | ||
"vuelidate": "^0.7.4", | ||
"vuex-persistedstate": "^2.7.0" | ||
}, | ||
"devDependencies": { | ||
"@quasar/app": "^1.0.0", | ||
"@quasar/quasar-app-extension-icon-genie": "^1.1.3", | ||
"@vue/eslint-config-standard": "^4.0.0", | ||
"babel-eslint": "^10.0.1", | ||
"eslint": "^5.10.0", | ||
"eslint-loader": "^2.1.1", | ||
"eslint-plugin-vue": "^5.0.0" | ||
}, | ||
"engines": { | ||
"node": ">= 8.9.0", | ||
"npm": ">= 5.6.0", | ||
"yarn": ">= 1.6.0" | ||
}, | ||
"browserslist": [ | ||
"last 1 version, not dead, ie >= 11" | ||
] | ||
} |
Access has been restricted
You have triggered a rate limit.
Please wait a few minutes before you try again;
in some cases this may take up to an hour.