forked from koderover/zadig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.61 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
{
"name": "zadig-portal",
"version": "1.0.0",
"description": "zadig portal",
"author": "koderover <[email protected]>",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"build": "eslint --ext .js,.vue src && stylelint src && node build/build.js",
"eslint": "eslint --fix --ext .js,.vue src",
"stylelint": "stylelint --fix src",
"prepare": "cd .. && husky install zadig-portal/.husky"
},
"dependencies": {
"axios": "0.18.0",
"countup.js": "2.0.5",
"diff": "3.5.0",
"echarts": "4.4.0",
"element-ui": "2.15.1",
"eventsource-polyfill": "0.9.6",
"intro.js": "2.9.3",
"ionicons": "2.0.1",
"js-yaml": "4.1.0",
"jsencrypt": "3.0.0-rc.1",
"less": "2.7.2",
"less-loader": "2.2.3",
"loaders.css": "0.1.2",
"lodash": "4.17.21",
"mobile-device-detect": "0.3.3",
"moment": "2.29.1",
"normalize.css": "8.0.1",
"pinyin": "2.9.0",
"smoothscroll-polyfill": "0.4.3",
"store": "2.0.4",
"ts-optchain": "^0.1.8",
"vant": "2.8.1",
"vue": "2.6.12",
"vue-clipboard2": "0.0.8",
"vue-codemirror": "4.0.6",
"vue-countup-v2": "4.0.0",
"vue-echarts": "4.0.2",
"vue-introjs": "1.3.2",
"vue-json-pretty": "1.6.0",
"vue-multipane": "^0.9.5",
"vue-resource": "1.5.1",
"vue-router": "3.0.2",
"vue-virtual-scroll-list": "2.3.2",
"vue2-ace-bind": "0.0.5",
"vuex": "3.1.0",
"xterm": "4.8.1",
"xterm-addon-attach": "0.6.0",
"xterm-addon-fit": "0.4.0",
"xterm-addon-search": "0.7.0"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.22.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.0.1",
"compression-webpack-plugin": "1.1.12",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.9.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"node-notifier": "^5.1.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.2.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"rimraf": "^2.6.0",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"stylelint": "^13.13.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-webpack-plugin": "0.10.4",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.5.8",
"vue-loader": "^14.2.1",
"vue-style-loader": "^4.0.1",
"vue-template-compiler": "^2.6.12",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix"
],
"src/**/*.{less,css,vue}": [
"stylelint --fix"
]
}
}