-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "console-frontend-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --open",
"serve:ver": "vue-cli-service serve --build-mode ver --open",
"build:sit": "vue-cli-service build --build-mode sit",
"build:uat": "vue-cli-service build --build-mode uat",
"build:ver": "vue-cli-service build --build-mode ver",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lint:fix": "vue-cli-service lint --fix",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"dll": "webpack -p --progress --config ./webpack.dll.conf.js",
"analyze": "vue-cli-service build"
},
"dependencies": {
"axios": "^0.18.0",
"element-china-area-data": "^4.1.1",
"element-ui": "^2.13.0",
"lodash": "^4.17.11",
"md5": "^2.2.1",
"nprogress": "^0.2.0",
"vue": "^2.6.10",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@nn-yy/css-flex": "^1.3.0",
"@vue/cli-plugin-babel": "^3.4.1",
"@vue/cli-plugin-e2e-cypress": "^3.4.1",
"@vue/cli-plugin-eslint": "^3.4.1",
"@vue/cli-plugin-unit-mocha": "^3.4.1",
"@vue/cli-service": "^3.4.1",
"@vue/eslint-config-airbnb": "^3.0.1",
"@vue/eslint-config-standard": "^3.0.1",
"@vue/test-utils": "^1.0.0-beta.20",
"add-asset-html-webpack-plugin": "^3.1.3",
"babel-plugin-component": "^1.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"chai": "^4.1.2",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"lint-staged": "^7.2.2",
"md5": "^2.2.1",
"node-sass": "^4.11.0",
"path-to-regexp": "^2.4.0",
"sass-loader": "^7.0.1",
"terser-webpack-plugin": "^1.2.2",
"vue-class-component": "^6.2.0",
"vue-property-decorator": "^7.0.0",
"vue-template-compiler": "^2.5.17",
"vuex-class": "^0.3.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.3.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}