Skip to content

Commit 6ceb9ce

Browse files
committed
:init:(*): Init app
1 parent f34d755 commit 6ceb9ce

File tree

184 files changed

+17254
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+17254
-0
lines changed

babel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/app'
4+
]
5+
}

jsconfig.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": "./",
4+
"paths": {
5+
"@/*": [
6+
"src/*"
7+
]
8+
}
9+
},
10+
"exclude": [
11+
"node_modules",
12+
"dist"
13+
]
14+
}

package.json

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"name": "nest",
3+
"version": "1.0.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "vue-cli-service serve",
7+
"build": "vue-cli-service build",
8+
"build:docker": "vue-cli-service build --dest=./docker/dist/",
9+
"lint": "eslint --fix --ext .js,.vue src",
10+
"analyze": "vue-cli-service build --report"
11+
},
12+
"dependencies": {
13+
"@chenfengyuan/vue-qrcode": "^1.0.1",
14+
"@riophae/vue-treeselect": "0.4.0",
15+
"avue-plugin-ueditor": "^0.1.4",
16+
"axios": "^0.18.0",
17+
"babel-polyfill": "^6.26.0",
18+
"classlist-polyfill": "^1.2.0",
19+
"clipboard": "^2.0.4",
20+
"codemirror": "^5.53.2",
21+
"crypto-js": "^3.1.9-1",
22+
"dayjs": "^1.11.7",
23+
"echarts": "^4.2.1",
24+
"element-ui": "2.15.8",
25+
"js-cookie": "^2.2.0",
26+
"laf-client-sdk": "^1.0.0-beta.2",
27+
"less-loader": "^6.0.0",
28+
"nprogress": "^0.2.0",
29+
"pig-avue-form-design": "1.6.0",
30+
"script-loader": "^0.7.2",
31+
"sockjs-client": "1.0.0",
32+
"stomp-websocket": "2.3.4-next",
33+
"vue": "2.6.14",
34+
"vue-axios": "^2.1.2",
35+
"vue-clipboard2": "^0.3.0",
36+
"vue-cnname-avatar": "^1.0.6",
37+
"vue-cron": "^1.0.9",
38+
"vue-echarts": "^4.0.1",
39+
"vue-json-editor": "^1.2.3",
40+
"vue-json-tree-view": "^2.1.4",
41+
"vue-quill-editor": "3.0.6",
42+
"vue-router": "^3.0.2",
43+
"vuex": "^3.0.1"
44+
},
45+
"devDependencies": {
46+
"@vue/cli-plugin-babel": "^3.12.0",
47+
"@vue/cli-plugin-eslint": "^4.5.15",
48+
"@vue/cli-service": "^3.12.0",
49+
"@vue/eslint-config-standard": "4.0.0",
50+
"babel-eslint": "^10.1.0",
51+
"benz-amr-recorder": "^1.0.14",
52+
"chai": "^4.1.2",
53+
"compression-webpack-plugin": "^3.1.0",
54+
"eslint": "^6.8.0",
55+
"eslint-plugin-vue": "^6.2.2",
56+
"sass": "1.32.13",
57+
"sass-loader": "10.1.1",
58+
"vue-template-compiler": "2.6.14",
59+
"vue-video-player": "^5.0.2"
60+
},
61+
"lint-staged": {
62+
"*.js": [
63+
"vue-cli-service lint",
64+
"git add"
65+
],
66+
"*.vue": [
67+
"vue-cli-service lint",
68+
"git add"
69+
]
70+
}
71+
}

0 commit comments

Comments
 (0)