-
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.
- Loading branch information
1 parent
17777f6
commit 150d56b
Showing
224 changed files
with
18,578 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,5 @@ | ||
{ | ||
"presets": [ | ||
"@vue/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,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 @@ | ||
/public |
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,21 @@ | ||
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' | ||
} | ||
} |
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,28 @@ | ||
.DS_Store | ||
node_modules | ||
/dist | ||
|
||
package-lock.json | ||
|
||
/tests/e2e/videos/ | ||
/tests/e2e/screenshots/ | ||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw* | ||
|
||
build/env.js |
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 = { | ||
plugins: { | ||
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,5 @@ | ||
language: node_js | ||
node_js: stable | ||
script: npm run lint | ||
notifications: | ||
email: 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,19 @@ | ||
# asteroid | ||
A more comprehensive management system developed on the basis of iview-admin. | ||
|
||
## Getting started | ||
```bush | ||
# clone the project | ||
git clone https://github.com/Inspiration1/asteroid.git | ||
// install dependencies | ||
npm install | ||
// develop | ||
npm run dev | ||
``` | ||
|
||
## Build | ||
```bush | ||
npm run build | ||
``` |
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,3 @@ | ||
{ | ||
"pluginsFile": "tests/e2e/plugins/index.js" | ||
} |
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,79 @@ | ||
{ | ||
"name": "asteroid", | ||
"version": "1.0.0", | ||
"author": "Zoe<[email protected]>", | ||
"private": false, | ||
"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" | ||
}, | ||
"dependencies": { | ||
"@antv/data-set": "^0.10.2", | ||
"@antv/g2": "^3.4.10", | ||
"@tinymce/tinymce-vue": "^2.0.0", | ||
"axios": "^0.18.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", | ||
"fullcalendar": "^3.10.0", | ||
"html2canvas": "^1.0.0-alpha.12", | ||
"iview": "^3.2.2", | ||
"iview-area": "^1.5.17", | ||
"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", | ||
"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", | ||
"wangeditor": "^3.1.1", | ||
"xlsx": "^0.13.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/test-utils": "^1.0.0-beta.10", | ||
"chai": "^4.1.2", | ||
"eslint-plugin-cypress": "^2.0.1", | ||
"less": "^2.7.3", | ||
"less-loader": "^4.0.5", | ||
"lint-staged": "^6.0.0", | ||
"mockjs": "^1.0.1-beta3", | ||
"vue-template-compiler": "^2.5.13" | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 8" | ||
], | ||
"gitHooks": { | ||
"pre-commit": "lint-staged" | ||
}, | ||
"lint-staged": { | ||
"*.js": [ | ||
"vue-cli-service lint", | ||
"git add" | ||
], | ||
"*.vue": [ | ||
"vue-cli-service lint", | ||
"git add" | ||
] | ||
} | ||
} |
Binary file not shown.
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,17 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | ||
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> | ||
<title></title> | ||
</head> | ||
<body> | ||
<noscript> | ||
<strong>We're sorry but asteroid doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> | ||
</noscript> | ||
<div id="app"></div> | ||
<!-- built files will be auto injected --> | ||
</body> | ||
</html> |
Oops, something went wrong.