-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Inspiration1/dev
Update dependencies
- Loading branch information
Showing
44 changed files
with
250 additions
and
203 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
/public | ||
/public, | ||
/node_modules |
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 |
---|---|---|
@@ -1,21 +1,42 @@ | ||
module.exports = { | ||
root: true, | ||
'extends': [ | ||
'plugin:vue/essential', | ||
'@vue/standard' | ||
], | ||
rules: { | ||
// allow async-await | ||
'generator-star-spacing': 'off', | ||
// allow debugger during development | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', | ||
'vue/no-parsing-error': [2, { | ||
'x-invalid-end-tag': false | ||
}], | ||
'no-undef': 'off', | ||
'camelcase': 'off' | ||
}, | ||
parserOptions: { | ||
parser: 'babel-eslint' | ||
} | ||
} | ||
root: true, | ||
"env": { | ||
"browser": true, | ||
"es6": true | ||
}, | ||
"extends": [ | ||
"plugin:vue/essential", | ||
'@vue/standard' | ||
], | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 2018, | ||
"sourceType": "module", | ||
parser: 'babel-eslint' | ||
}, | ||
"plugins": [ | ||
"vue" | ||
], | ||
"rules": { | ||
// allow async-await | ||
'generator-star-spacing': 'off', | ||
// allow debugger during development | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', | ||
'vue/no-parsing-error': [2, { | ||
'x-invalid-end-tag': false | ||
}], | ||
'no-undef': 'off', | ||
'camelcase': 'off', | ||
'indent': [ | ||
'error', | ||
2, | ||
{ | ||
SwitchCase: 1, | ||
flatTernaryExpressions: 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 |
---|---|---|
@@ -1,64 +1,71 @@ | ||
{ | ||
"name": "asteroid", | ||
"version": "1.1.0", | ||
"author": "Zoe<[email protected]>", | ||
"version": "1.2.0", | ||
"private": false, | ||
"author": "Zoe<[email protected]>", | ||
"scripts": { | ||
"dev": "vue-cli-service serve --open", | ||
"build": "vue-cli-service build", | ||
"lint": "vue-cli-service lint", | ||
"test:unit": "vue-cli-service test:unit", | ||
"test:e2e": "vue-cli-service test:e2e" | ||
"test:e2e": "vue-cli-service test:e2e", | ||
"lint": "vue-cli-service lint", | ||
"dev": "vue-cli-service serve --open" | ||
}, | ||
"dependencies": { | ||
"@antv/data-set": "^0.10.2", | ||
"@antv/g2": "^3.4.10", | ||
"@fullcalendar/core": "^4.2.0", | ||
"@fullcalendar/daygrid": "^4.2.0", | ||
"@fullcalendar/interaction": "^4.2.0", | ||
"@fullcalendar/timegrid": "^4.2.0", | ||
"@fullcalendar/vue": "^4.2.2", | ||
"@tinymce/tinymce-vue": "^2.0.0", | ||
"axios": "^0.18.0", | ||
"@antv/g2": "^3.5.11", | ||
"@fullcalendar/core": "^4.3.1", | ||
"@fullcalendar/daygrid": "^4.3.0", | ||
"@fullcalendar/interaction": "^4.3.0", | ||
"@fullcalendar/timegrid": "^4.3.0", | ||
"@fullcalendar/vue": "^4.3.1", | ||
"@tinymce/tinymce-vue": "^3.0.1", | ||
"axios": "^0.19.0", | ||
"clipboard": "^2.0.0", | ||
"codemirror": "^5.38.0", | ||
"countup": "^1.8.2", | ||
"cropperjs": "^1.2.2", | ||
"dayjs": "^1.7.7", | ||
"echarts": "^4.0.4", | ||
"html2canvas": "^1.0.0-alpha.12", | ||
"iview": "^3.2.2", | ||
"iview-area": "^1.5.17", | ||
"iview": "^3.5.3", | ||
"iview-area": "^1.6.0", | ||
"jquery": "^3.3.1", | ||
"js-cookie": "^2.2.0", | ||
"moment": "^2.24.0", | ||
"qrcodejs2": "0.0.2", | ||
"simplemde": "^1.11.2", | ||
"sortablejs": "^1.7.0", | ||
"tinymce": "^5.0.1", | ||
"tinymce": "^5.1.2", | ||
"tree-table-vue": "^1.1.0", | ||
"v-org-tree": "^1.0.6", | ||
"viser-vue": "^2.4.5", | ||
"vue": "^2.5.10", | ||
"vue-i18n": "^7.8.0", | ||
"vue-router": "^3.0.1", | ||
"vuedraggable": "^2.16.0", | ||
"vuex": "^3.0.1", | ||
"vue": "^2.6.10", | ||
"vue-i18n": "^8.15.1", | ||
"vue-router": "^3.1.3", | ||
"vuedraggable": "^2.23.2", | ||
"vuex": "^3.1.2", | ||
"wangeditor": "^3.1.1", | ||
"xlsx": "^0.13.3" | ||
"xlsx": "^0.15.3" | ||
}, | ||
"devDependencies": { | ||
"@vue/cli-plugin-babel": "^3.0.1", | ||
"@vue/cli-plugin-eslint": "^3.0.1", | ||
"@vue/cli-plugin-unit-mocha": "^3.0.1", | ||
"@vue/cli-service": "^3.0.1", | ||
"@vue/eslint-config-standard": "^3.0.0-beta.10", | ||
"@vue/cli-plugin-babel": "^4.1.1", | ||
"@vue/cli-plugin-eslint": "^4.1.1", | ||
"@vue/cli-plugin-unit-mocha": "^4.1.1", | ||
"@vue/cli-service": "^4.1.1", | ||
"@vue/eslint-config-standard": "^5.0.0", | ||
"@vue/test-utils": "^1.0.0-beta.10", | ||
"babel-eslint": "^10.0.3", | ||
"chai": "^4.1.2", | ||
"eslint": "^5.16.0", | ||
"eslint-plugin-cypress": "^2.0.1", | ||
"less": "^2.7.3", | ||
"less-loader": "^4.0.5", | ||
"lint-staged": "^6.0.0", | ||
"eslint-plugin-import": "^2.19.1", | ||
"eslint-plugin-node": "^10.0.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-standard": "^4.0.1", | ||
"eslint-plugin-vue": "^5.0.0", | ||
"less": "^3.10.3", | ||
"less-loader": "^5.0.0", | ||
"lint-staged": "^9.5.0", | ||
"mockjs": "^1.0.1-beta3", | ||
"vue-template-compiler": "^2.5.13" | ||
}, | ||
|
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
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.