-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
133 lines (133 loc) · 3.86 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "vue-element-admin-ts",
"version": "1.0.0",
"private": true,
"description": "A front-end template built on vue-cli3 and typescript",
"author": "liwb <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"dll": "node build/dll-build.js",
"build:stage": "vue-cli-service build --mode staging",
"preview": "node build/index.ts --preview",
"lint": "vue-cli-service lint",
"deploy": "npm run build && node build/zip.ts",
"analyz": "vue-cli-service build --mode analyz",
"release": "sh ./build/release.sh",
"report": "npm_config_generate_report=true npm run build",
"svg": "vsvg -s ./src/icons/svg -t ./src/icons/components --ext ts --es6",
"test": ""
},
"dependencies": {
"@liwb/cloud-utils": "^1.3.0",
"axios": "^0.19.0",
"clipboard": "^2.0.4",
"codemirror": "^5.44.0",
"core-js": "^3.3.2",
"driver.js": "^0.9.3",
"dropzone": "^5.5.1",
"echarts": "^4.4.0",
"element-ui": "^2.12.0",
"file-saver": "^2.0.1",
"fuse.js": "^3.4.2",
"jsonlint": "^1.6.3",
"jszip": "^3.2.0",
"magicless": "^1.1.0",
"mockjs": "^1.0.1-beta3",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"path": "^0.12.7",
"path-to-regexp": "^3.0.0",
"qs": "^6.9.1",
"register-service-worker": "^1.5.2",
"screenfull": "^5.0.0",
"sortablejs": "^1.8.3",
"store": "^2.0.12",
"tasksfile": "^5.1.0",
"terser-webpack-plugin": "^2.2.1",
"tui-editor": "^1.3.1",
"vue": "^2.5.21",
"vue-class-component": "^7.1.0",
"vue-count-to": "^1.0.13",
"vue-i18n": "^8.8.0",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.3",
"vue-splitpane": "^1.0.2",
"vue-svgicon": "^3.2.2",
"vuedraggable": "^2.18.1",
"vuex": "^3.1.0",
"vuex-class": "^0.3.1",
"vuex-module-decorators": "^0.11.0",
"xlsx": "^0.17.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.4.0",
"@types/clipboard": "^2.0.1",
"@types/codemirror": "0.0.80",
"@types/connect": "^3.4.32",
"@types/dropzone": "^5.0.4",
"@types/echarts": "^4.1.15",
"@types/file-saver": "^2.0.0",
"@types/jszip": "^3.1.5",
"@types/mockjs": "^1.0.2",
"@types/node": "^12.12.7",
"@types/nprogress": "^0.2.0",
"@types/screenfull": "^4.1.0",
"@types/serve-static": "^1.13.3",
"@types/sortablejs": "^1.7.2",
"@types/store": "^2.0.1",
"@types/webpack-env": "^1.13.6",
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-pwa": "^4.0.5",
"@vue/cli-plugin-typescript": "^4.0.5",
"@vue/cli-service": "^4.0.5",
"add-asset-html-webpack-plugin": "^3.1.3",
"archiver": "^3.0.0",
"chalk": "^3.0.0",
"chokidar": "^3.3.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"connect": "^3.6.6",
"husky": "^3.0.9",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^9.4.2",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"progress-bar-webpack-plugin": "^1.12.1",
"script-ext-html-webpack-plugin": "^2.1.3",
"script-loader": "^0.7.2",
"serve-static": "^1.14.1",
"style-resources-loader": "^1.2.1",
"typescript": "~3.6.4",
"vue-cli-plugin-element": "^1.0.1",
"vue-template-compiler": "^2.5.21",
"webpack-bundle-analyzer": "^3.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"vue-cli3",
"vue",
"typescript",
"admin",
"element-ui-admin",
"axios"
],
"lint-staged": {
"*.{ts,vue}": [
"npm run lint",
"git add"
]
},
"scripts-info": {
"serve": "运行开发服务器",
"build": "生产环境执行构建",
"analyz": "生产环境执行构建打包分析",
"deploy": "生产环境执行构建并压缩zip包"
}
}