Skip to content

Commit 094ccde

Browse files
committed
fix
1 parent 18fd156 commit 094ccde

File tree

2 files changed

+95
-1
lines changed

2 files changed

+95
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
auxpi
22
auxpi.tar.gz
3-
*.json
43
siteConfig.conf
54
*.lock
65
*.tmp

resource/package.json

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
{
2+
"name": "Auxpi-Admin",
3+
"version": "2.0.1",
4+
"license": "GPLV3",
5+
"description": "Auxpi admin management base on vue-element-admin",
6+
"author": "Aimer <[email protected]>",
7+
"scripts": {
8+
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
9+
"start": "npm run dev",
10+
"build": "node build/build.js",
11+
"build:report": "npm_config_report=true npm run build",
12+
"lint": "eslint --ext .js,.vue src",
13+
"test": "npm run lint",
14+
"svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml"
15+
},
16+
"dependencies": {
17+
"axios": "0.18.0",
18+
"bootstrap": "^3.3.7",
19+
"clipboard": "^2.0.4",
20+
"echarts": "^4.1.0",
21+
"element-ui": "2.4.6",
22+
"js-cookie": "2.2.0",
23+
"normalize.css": "7.0.0",
24+
"nprogress": "0.2.0",
25+
"qs": "^6.6.0",
26+
"socket.io-client": "^2.2.0",
27+
"v-viewer": "^1.4.0",
28+
"vue": "2.5.17",
29+
"vue-count-to": "^1.0.13",
30+
"vue-i18n": "^8.11.1",
31+
"vue-router": "3.0.1",
32+
"vuedraggable": "^2.20.0",
33+
"vuex": "3.0.1"
34+
},
35+
"devDependencies": {
36+
"autoprefixer": "8.5.0",
37+
"babel-core": "6.26.0",
38+
"babel-eslint": "8.2.6",
39+
"babel-helper-vue-jsx-merge-props": "2.0.3",
40+
"babel-loader": "7.1.5",
41+
"babel-plugin-syntax-jsx": "6.18.0",
42+
"babel-plugin-transform-runtime": "6.23.0",
43+
"babel-plugin-transform-vue-jsx": "3.7.0",
44+
"babel-preset-env": "1.7.0",
45+
"babel-preset-stage-2": "6.24.1",
46+
"chalk": "2.4.1",
47+
"compression-webpack-plugin": "2.0.0",
48+
"copy-webpack-plugin": "4.5.2",
49+
"css-loader": "1.0.0",
50+
"eslint": "4.19.1",
51+
"eslint-friendly-formatter": "4.0.1",
52+
"eslint-loader": "2.0.0",
53+
"eslint-plugin-vue": "4.7.1",
54+
"eventsource-polyfill": "0.9.6",
55+
"file-loader": "1.1.11",
56+
"friendly-errors-webpack-plugin": "1.7.0",
57+
"html-webpack-plugin": "4.0.0-alpha",
58+
"mini-css-extract-plugin": "0.4.1",
59+
"node-notifier": "5.2.1",
60+
"node-sass": "^4.7.2",
61+
"optimize-css-assets-webpack-plugin": "5.0.0",
62+
"ora": "3.0.0",
63+
"path-to-regexp": "2.4.0",
64+
"portfinder": "1.0.16",
65+
"postcss-import": "12.0.0",
66+
"postcss-loader": "2.1.6",
67+
"postcss-url": "7.3.2",
68+
"rimraf": "2.6.2",
69+
"sass-loader": "7.0.3",
70+
"script-ext-html-webpack-plugin": "2.0.1",
71+
"semver": "5.5.0",
72+
"shelljs": "0.8.2",
73+
"svg-sprite-loader": "3.8.0",
74+
"svgo": "1.0.5",
75+
"uglifyjs-webpack-plugin": "1.2.7",
76+
"url-loader": "1.0.1",
77+
"vue-loader": "15.3.0",
78+
"vue-style-loader": "4.1.2",
79+
"vue-template-compiler": "2.5.17",
80+
"webpack": "4.16.5",
81+
"webpack-bundle-analyzer": "2.13.1",
82+
"webpack-cli": "3.1.0",
83+
"webpack-dev-server": "3.1.14",
84+
"webpack-merge": "4.1.4"
85+
},
86+
"engines": {
87+
"node": ">= 6.0.0",
88+
"npm": ">= 3.0.0"
89+
},
90+
"browserslist": [
91+
"> 2%",
92+
"last 2 versions",
93+
"not ie <= 8"
94+
]
95+
}

0 commit comments

Comments
 (0)