apply-clients 3.5.5-12 → 3.5.5-14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dev-server.js +145 -133
- package/package.json +118 -118
- package/src/applyAndroid.js +72 -72
- package/src/components/android/Process/Processes/AppChargeManagement.vue +635 -635
- package/src/components/android/Process/Processes/AppChargeManagementNew.vue +630 -630
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +480 -480
- package/src/components/product/Process/ExplorationSelect.vue +497 -497
- package/src/components/product/Process/Processes/InstallationDetails.vue +610 -610
- package/src/components/product/Process/Processes/chargeManagement.vue +656 -656
- package/src/filiale/baiyin/android/ByDeviceManagement.vue +916 -916
- package/src/filiale/jinhuang/android/AppAddMaterialScience.vue +634 -0
- package/src/filiale/jinhuang/android.js +6 -0
- package/src/filiale/jinhuang/pc/ServiceControl.vue +1925 -1925
- package/src/filiale/jinhuang/pc/addMaterialScience.vue +632 -0
- package/src/filiale/jinhuang/pc/addressAndUserinfoManagement.vue +203 -241
- package/src/filiale/jinhuang/pc/chargeManagementNew.vue +589 -589
- package/src/filiale/jinhuang/pc.js +9 -8
- package/src/filiale/siyangRH/android/AppAddMaterialScience.vue +466 -466
- package/src/filiale/yongzhouch/pc/ApplyUpload.vue +327 -327
- package/src/filiale/yongzhouch/pc/ExplorationSelect.vue +490 -490
- package/src/filiale/yongzhouch/pc/InstallationDetails.vue +610 -610
- package/src/filiale/yongzhouch/pc/ServiceControl.vue +1943 -1943
- package/src/filiale/yongzhouch/pc/devicesManagement.vue +488 -488
- package/src/filiale/yongzhouch/pc.js +10 -10
- package/src/main.js +23 -25
package/build/dev-server.js
CHANGED
|
@@ -1,133 +1,145 @@
|
|
|
1
|
-
var express = require('express')
|
|
2
|
-
var webpack = require('webpack')
|
|
3
|
-
var config = require('./webpack.dev.conf')
|
|
4
|
-
var proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
-
// var httpProxy = require('http-proxy')
|
|
6
|
-
var app = express()
|
|
7
|
-
var compiler = webpack(config)
|
|
8
|
-
// var proxy = httpProxy.createProxyServer()
|
|
9
|
-
// var ldap = 'http://121.36.79.201:8400'
|
|
10
|
-
// var applyinstall = 'http://121.36.79.201:8400'
|
|
11
|
-
var ldap = 'http://
|
|
12
|
-
var applyinstall = 'http://
|
|
13
|
-
|
|
14
|
-
var proxyTable = {
|
|
15
|
-
'/
|
|
16
|
-
target: ldap,
|
|
17
|
-
changeOrigin: true
|
|
18
|
-
},
|
|
19
|
-
'/
|
|
20
|
-
target:
|
|
21
|
-
changeOrigin: true
|
|
22
|
-
},
|
|
23
|
-
'/rs/
|
|
24
|
-
target: ldap,
|
|
25
|
-
changeOrigin: true
|
|
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
|
-
'/rs/
|
|
61
|
-
target:
|
|
62
|
-
changeOrigin: true
|
|
63
|
-
},
|
|
64
|
-
'/
|
|
65
|
-
target: applyinstall,
|
|
66
|
-
changeOrigin: true
|
|
67
|
-
},
|
|
68
|
-
'/rs': {
|
|
69
|
-
target:
|
|
70
|
-
changeOrigin: true
|
|
71
|
-
},
|
|
72
|
-
'/
|
|
73
|
-
target: applyinstall,
|
|
74
|
-
changeOrigin: true
|
|
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
|
-
app.use(
|
|
119
|
-
|
|
120
|
-
//
|
|
121
|
-
//
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
//
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
1
|
+
var express = require('express')
|
|
2
|
+
var webpack = require('webpack')
|
|
3
|
+
var config = require('./webpack.dev.conf')
|
|
4
|
+
var proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
+
// var httpProxy = require('http-proxy')
|
|
6
|
+
var app = express()
|
|
7
|
+
var compiler = webpack(config)
|
|
8
|
+
// var proxy = httpProxy.createProxyServer()
|
|
9
|
+
// var ldap = 'http://121.36.79.201:8400'
|
|
10
|
+
// var applyinstall = 'http://121.36.79.201:8400'
|
|
11
|
+
var ldap = 'http://113.219.4.57:31467'
|
|
12
|
+
var applyinstall = 'http://113.219.4.57:31467'
|
|
13
|
+
|
|
14
|
+
var proxyTable = {
|
|
15
|
+
'/singlepage': {
|
|
16
|
+
target: ldap,
|
|
17
|
+
changeOrigin: true
|
|
18
|
+
},
|
|
19
|
+
'/api': {
|
|
20
|
+
target: ldap,
|
|
21
|
+
changeOrigin: true
|
|
22
|
+
},
|
|
23
|
+
'/apply/rs/file/uploadFile': {
|
|
24
|
+
target: ldap,
|
|
25
|
+
changeOrigin: true
|
|
26
|
+
},
|
|
27
|
+
'/rs/logic/getSaleInitData': {
|
|
28
|
+
target: ldap,
|
|
29
|
+
changeOrigin: true
|
|
30
|
+
},
|
|
31
|
+
'/rs/workflow': {
|
|
32
|
+
target: applyinstall,
|
|
33
|
+
changeOrigin: true
|
|
34
|
+
},
|
|
35
|
+
'/rs/vue': {
|
|
36
|
+
target: ldap,
|
|
37
|
+
changeOrigin: true
|
|
38
|
+
},
|
|
39
|
+
// 查找资源服务数据
|
|
40
|
+
'/rs/search': {
|
|
41
|
+
target: ldap,
|
|
42
|
+
changeOrigin: true
|
|
43
|
+
},
|
|
44
|
+
// 街道查询
|
|
45
|
+
'/rs/sql/address_getstreetlist': {
|
|
46
|
+
target: ldap,
|
|
47
|
+
changeOrigin: true
|
|
48
|
+
},
|
|
49
|
+
// 创建街道
|
|
50
|
+
'/rs/logic/address_updatestreet': {
|
|
51
|
+
target: ldap,
|
|
52
|
+
changeOrigin: true
|
|
53
|
+
},
|
|
54
|
+
// 创建小区
|
|
55
|
+
'/rs/logic/address_updatearea': {
|
|
56
|
+
target: ldap,
|
|
57
|
+
changeOrigin: true
|
|
58
|
+
},
|
|
59
|
+
// 用户登录服务地址
|
|
60
|
+
'/rs/user': {
|
|
61
|
+
target: ldap,
|
|
62
|
+
changeOrigin: true
|
|
63
|
+
},
|
|
64
|
+
'/rs/logic/getInitData': {
|
|
65
|
+
target: ldap?ldap:applyinstall,
|
|
66
|
+
changeOrigin: true
|
|
67
|
+
},
|
|
68
|
+
'/rs/logic/getLogin': {
|
|
69
|
+
target: ldap,
|
|
70
|
+
changeOrigin: true
|
|
71
|
+
},
|
|
72
|
+
'/rs/file': { // 文件上传
|
|
73
|
+
target: applyinstall,
|
|
74
|
+
changeOrigin: true
|
|
75
|
+
},
|
|
76
|
+
'/project': { // 文件回显
|
|
77
|
+
target: applyinstall,
|
|
78
|
+
changeOrigin: true
|
|
79
|
+
},
|
|
80
|
+
'/rs': {
|
|
81
|
+
target: applyinstall,
|
|
82
|
+
changeOrigin: true
|
|
83
|
+
},
|
|
84
|
+
'/ws': {
|
|
85
|
+
target: applyinstall,
|
|
86
|
+
changeOrigin: true,
|
|
87
|
+
ws: true // 代理webSocket
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
var devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
92
|
+
publicPath: config.output.publicPath,
|
|
93
|
+
stats: {
|
|
94
|
+
colors: true,
|
|
95
|
+
chunks: false
|
|
96
|
+
}
|
|
97
|
+
})
|
|
98
|
+
|
|
99
|
+
var hotMiddleware = require('webpack-hot-middleware')(compiler)
|
|
100
|
+
// force page reload when html-webpack-plugin template changes
|
|
101
|
+
compiler.plugin('compilation', function (compilation) {
|
|
102
|
+
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
|
|
103
|
+
hotMiddleware.publish({action: 'reload'})
|
|
104
|
+
cb()
|
|
105
|
+
})
|
|
106
|
+
})
|
|
107
|
+
|
|
108
|
+
// proxy api requests
|
|
109
|
+
Object.keys(proxyTable).forEach(function (context) {
|
|
110
|
+
var options = proxyTable[context]
|
|
111
|
+
if (typeof options === 'string') {
|
|
112
|
+
options = {target: options}
|
|
113
|
+
}
|
|
114
|
+
app.use(proxyMiddleware(context, options))
|
|
115
|
+
})
|
|
116
|
+
|
|
117
|
+
// handle fallback for HTML5 history API
|
|
118
|
+
app.use(require('connect-history-api-fallback')())
|
|
119
|
+
// app.use(function (req, res, next) {
|
|
120
|
+
// res.header('Access-Control-Allow-Origin', '*')
|
|
121
|
+
// res.header('Access-Control-Allow-Headers', 'X-Requested-With')
|
|
122
|
+
// res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
|
|
123
|
+
// res.header('X-Powered-By', '3,2,1')
|
|
124
|
+
// res.header('Access-Control-Allow-Credentials', 'true')
|
|
125
|
+
// res.header('Content-Type', 'application/json;charset=utf-8')
|
|
126
|
+
// next()
|
|
127
|
+
// })
|
|
128
|
+
|
|
129
|
+
// serve webpack bundle output
|
|
130
|
+
app.use(devMiddleware)
|
|
131
|
+
|
|
132
|
+
// enable hot-reload and state-preserving
|
|
133
|
+
// compilation error display
|
|
134
|
+
app.use(hotMiddleware)
|
|
135
|
+
|
|
136
|
+
// serve pure static assets
|
|
137
|
+
app.use('/static', express.static('./static'))
|
|
138
|
+
|
|
139
|
+
module.exports = app.listen(31467, function (err) {
|
|
140
|
+
if (err) {
|
|
141
|
+
console.log(err)
|
|
142
|
+
return
|
|
143
|
+
}
|
|
144
|
+
console.log('Listening at http://localhost:31467')
|
|
145
|
+
})
|
package/package.json
CHANGED
|
@@ -1,118 +1,118 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "apply-clients",
|
|
3
|
-
"version": "3.5.5-
|
|
4
|
-
"description": "报建前端模块",
|
|
5
|
-
"main": "src/index.js",
|
|
6
|
-
"directories": {
|
|
7
|
-
"example": "examples",
|
|
8
|
-
"test": "test"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"unit": "karma start test/unit/karma.conf.js",
|
|
12
|
-
"example": "node build/example-server.js",
|
|
13
|
-
"dev": "node build/dev-server.js",
|
|
14
|
-
"lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
|
|
15
|
-
"build": "rimraf dist && mkdirp dist && ncp static dist/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
16
|
-
"e2e": "node test/e2e/runner.js",
|
|
17
|
-
"release": "bash build/release.sh",
|
|
18
|
-
"make": "rimraf dist-android && mkdirp dist-android && ncp static dist-android/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prodandroid.conf.js"
|
|
19
|
-
},
|
|
20
|
-
"repository": {
|
|
21
|
-
"type": "git",
|
|
22
|
-
"url": "https://gitee.com/aote/ApplyInstall.git"
|
|
23
|
-
},
|
|
24
|
-
"keywords": [
|
|
25
|
-
"ApplyInstall"
|
|
26
|
-
],
|
|
27
|
-
"author": "zx <939981212@qq.com>",
|
|
28
|
-
"license": "ISC",
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@logicflow/core": "^0.4.3",
|
|
31
|
-
"co": "4.6.0",
|
|
32
|
-
"dingtalk-jsapi": "^2.13.68",
|
|
33
|
-
"jsencrypt": "^3.0.0-rc.1",
|
|
34
|
-
"less": "^2.7.1",
|
|
35
|
-
"less-loader": "^2.2.3",
|
|
36
|
-
"lib-flexible": "^0.3.2",
|
|
37
|
-
"px2rem-loader": "^0.1.9",
|
|
38
|
-
"qrcodejs2": "0.0.2",
|
|
39
|
-
"vue": "^1.0.17",
|
|
40
|
-
"vue-bubble": "^1.0.3",
|
|
41
|
-
"sm-crypto": "^0.3.13"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"crypto-js": "^4.1.1",
|
|
45
|
-
"babel-core": "^6.0.0",
|
|
46
|
-
"babel-loader": "^6.0.0",
|
|
47
|
-
"babel-plugin-transform-runtime": "^6.0.0",
|
|
48
|
-
"babel-preset-es2015": "^6.0.0",
|
|
49
|
-
"babel-preset-stage-2": "^6.0.0",
|
|
50
|
-
"chai": "^3.5.0",
|
|
51
|
-
"connect-history-api-fallback": "^1.1.0",
|
|
52
|
-
"cross-env": "^1.0.7",
|
|
53
|
-
"cross-spawn": "^2.1.5",
|
|
54
|
-
"css-loader": "^0.23.0",
|
|
55
|
-
"echarts": "^4.1.0",
|
|
56
|
-
"eslint": "^2.0.0",
|
|
57
|
-
"eslint-config-standard": "^5.1.0",
|
|
58
|
-
"eslint-friendly-formatter": "^1.2.2",
|
|
59
|
-
"eslint-loader": "^1.3.0",
|
|
60
|
-
"eslint-plugin-html": "^1.3.0",
|
|
61
|
-
"eslint-plugin-promise": "^1.0.8",
|
|
62
|
-
"eslint-plugin-standard": "^1.3.2",
|
|
63
|
-
"eslint-plugin-vue": "^0.1.1",
|
|
64
|
-
"eventsource-polyfill": "^0.9.6",
|
|
65
|
-
"express": "^4.17.0",
|
|
66
|
-
"extract-text-webpack-plugin": "^1.0.1",
|
|
67
|
-
"file-loader": "^0.8.4",
|
|
68
|
-
"form-create": "^1.6.6",
|
|
69
|
-
"function-bind": "^1.0.2",
|
|
70
|
-
"html-webpack-plugin": "^2.8.1",
|
|
71
|
-
"http-proxy-middleware": "^0.11.0",
|
|
72
|
-
"inject-loader": "^2.0.1",
|
|
73
|
-
"isparta-loader": "^2.0.0",
|
|
74
|
-
"jasmine-core": "^2.4.1",
|
|
75
|
-
"jquery": "^3.3.1",
|
|
76
|
-
"json-loader": "^0.5.4",
|
|
77
|
-
"karma": "^1.4.1",
|
|
78
|
-
"karma-chrome-launcher": "^2.2.0",
|
|
79
|
-
"karma-coverage": "^1.1.1",
|
|
80
|
-
"karma-mocha": "^1.3.0",
|
|
81
|
-
"karma-sinon-chai": "^1.3.1",
|
|
82
|
-
"karma-sourcemap-loader": "^0.3.7",
|
|
83
|
-
"karma-spec-reporter": "0.0.31",
|
|
84
|
-
"karma-webpack": "^2.0.2",
|
|
85
|
-
"ldap-clients": "3.0.48",
|
|
86
|
-
"material-client": "3.0.1",
|
|
87
|
-
"mkdirp": "^0.5.1",
|
|
88
|
-
"mocha": "^3.2.0",
|
|
89
|
-
"ncp": "^2.0.0",
|
|
90
|
-
"nightwatch": "^0.8.18",
|
|
91
|
-
"rimraf": "^2.5.0",
|
|
92
|
-
"sale-client": "^1.4.33",
|
|
93
|
-
"selenium-server": "2.52.0",
|
|
94
|
-
"sinon": "^2.1.0",
|
|
95
|
-
"sinon-chai": "^2.8.0",
|
|
96
|
-
"style": "0.0.3",
|
|
97
|
-
"style-loader": "^0.20.3",
|
|
98
|
-
"system-clients": "3.2.86",
|
|
99
|
-
"system-phone": "1.2.80-49",
|
|
100
|
-
"url-loader": "^0.5.7",
|
|
101
|
-
"vue-client": "1.24.124",
|
|
102
|
-
"vue-hot-reload-api": "^1.2.0",
|
|
103
|
-
"vue-html-loader": "^1.0.0",
|
|
104
|
-
"vue-loader": "^8.2.1",
|
|
105
|
-
"vue-resource": "^1.5.0",
|
|
106
|
-
"vue-router": "^0.7.13",
|
|
107
|
-
"vue-strap": "^1.0.9",
|
|
108
|
-
"vue-style-loader": "^1.0.0",
|
|
109
|
-
"vue-validator": "^2.1.7",
|
|
110
|
-
"vux": "^2.9.4",
|
|
111
|
-
"webpack": "^1.12.2",
|
|
112
|
-
"webpack-dev-middleware": "^1.4.0",
|
|
113
|
-
"webpack-hot-middleware": "^2.6.0",
|
|
114
|
-
"webpack-merge": "^0.8.3",
|
|
115
|
-
"weixin-js-sdk": "^1.2.0",
|
|
116
|
-
"telephone-clients": "3.0.2-21-63"
|
|
117
|
-
}
|
|
118
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "apply-clients",
|
|
3
|
+
"version": "3.5.5-14",
|
|
4
|
+
"description": "报建前端模块",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"directories": {
|
|
7
|
+
"example": "examples",
|
|
8
|
+
"test": "test"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"unit": "karma start test/unit/karma.conf.js",
|
|
12
|
+
"example": "node build/example-server.js",
|
|
13
|
+
"dev": "node build/dev-server.js",
|
|
14
|
+
"lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
|
|
15
|
+
"build": "rimraf dist && mkdirp dist && ncp static dist/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
16
|
+
"e2e": "node test/e2e/runner.js",
|
|
17
|
+
"release": "bash build/release.sh",
|
|
18
|
+
"make": "rimraf dist-android && mkdirp dist-android && ncp static dist-android/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prodandroid.conf.js"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://gitee.com/aote/ApplyInstall.git"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"ApplyInstall"
|
|
26
|
+
],
|
|
27
|
+
"author": "zx <939981212@qq.com>",
|
|
28
|
+
"license": "ISC",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@logicflow/core": "^0.4.3",
|
|
31
|
+
"co": "4.6.0",
|
|
32
|
+
"dingtalk-jsapi": "^2.13.68",
|
|
33
|
+
"jsencrypt": "^3.0.0-rc.1",
|
|
34
|
+
"less": "^2.7.1",
|
|
35
|
+
"less-loader": "^2.2.3",
|
|
36
|
+
"lib-flexible": "^0.3.2",
|
|
37
|
+
"px2rem-loader": "^0.1.9",
|
|
38
|
+
"qrcodejs2": "0.0.2",
|
|
39
|
+
"vue": "^1.0.17",
|
|
40
|
+
"vue-bubble": "^1.0.3",
|
|
41
|
+
"sm-crypto": "^0.3.13"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"crypto-js": "^4.1.1",
|
|
45
|
+
"babel-core": "^6.0.0",
|
|
46
|
+
"babel-loader": "^6.0.0",
|
|
47
|
+
"babel-plugin-transform-runtime": "^6.0.0",
|
|
48
|
+
"babel-preset-es2015": "^6.0.0",
|
|
49
|
+
"babel-preset-stage-2": "^6.0.0",
|
|
50
|
+
"chai": "^3.5.0",
|
|
51
|
+
"connect-history-api-fallback": "^1.1.0",
|
|
52
|
+
"cross-env": "^1.0.7",
|
|
53
|
+
"cross-spawn": "^2.1.5",
|
|
54
|
+
"css-loader": "^0.23.0",
|
|
55
|
+
"echarts": "^4.1.0",
|
|
56
|
+
"eslint": "^2.0.0",
|
|
57
|
+
"eslint-config-standard": "^5.1.0",
|
|
58
|
+
"eslint-friendly-formatter": "^1.2.2",
|
|
59
|
+
"eslint-loader": "^1.3.0",
|
|
60
|
+
"eslint-plugin-html": "^1.3.0",
|
|
61
|
+
"eslint-plugin-promise": "^1.0.8",
|
|
62
|
+
"eslint-plugin-standard": "^1.3.2",
|
|
63
|
+
"eslint-plugin-vue": "^0.1.1",
|
|
64
|
+
"eventsource-polyfill": "^0.9.6",
|
|
65
|
+
"express": "^4.17.0",
|
|
66
|
+
"extract-text-webpack-plugin": "^1.0.1",
|
|
67
|
+
"file-loader": "^0.8.4",
|
|
68
|
+
"form-create": "^1.6.6",
|
|
69
|
+
"function-bind": "^1.0.2",
|
|
70
|
+
"html-webpack-plugin": "^2.8.1",
|
|
71
|
+
"http-proxy-middleware": "^0.11.0",
|
|
72
|
+
"inject-loader": "^2.0.1",
|
|
73
|
+
"isparta-loader": "^2.0.0",
|
|
74
|
+
"jasmine-core": "^2.4.1",
|
|
75
|
+
"jquery": "^3.3.1",
|
|
76
|
+
"json-loader": "^0.5.4",
|
|
77
|
+
"karma": "^1.4.1",
|
|
78
|
+
"karma-chrome-launcher": "^2.2.0",
|
|
79
|
+
"karma-coverage": "^1.1.1",
|
|
80
|
+
"karma-mocha": "^1.3.0",
|
|
81
|
+
"karma-sinon-chai": "^1.3.1",
|
|
82
|
+
"karma-sourcemap-loader": "^0.3.7",
|
|
83
|
+
"karma-spec-reporter": "0.0.31",
|
|
84
|
+
"karma-webpack": "^2.0.2",
|
|
85
|
+
"ldap-clients": "3.0.48",
|
|
86
|
+
"material-client": "3.0.1",
|
|
87
|
+
"mkdirp": "^0.5.1",
|
|
88
|
+
"mocha": "^3.2.0",
|
|
89
|
+
"ncp": "^2.0.0",
|
|
90
|
+
"nightwatch": "^0.8.18",
|
|
91
|
+
"rimraf": "^2.5.0",
|
|
92
|
+
"sale-client": "^1.4.33",
|
|
93
|
+
"selenium-server": "2.52.0",
|
|
94
|
+
"sinon": "^2.1.0",
|
|
95
|
+
"sinon-chai": "^2.8.0",
|
|
96
|
+
"style": "0.0.3",
|
|
97
|
+
"style-loader": "^0.20.3",
|
|
98
|
+
"system-clients": "3.2.86",
|
|
99
|
+
"system-phone": "1.2.80-49",
|
|
100
|
+
"url-loader": "^0.5.7",
|
|
101
|
+
"vue-client": "1.24.124",
|
|
102
|
+
"vue-hot-reload-api": "^1.2.0",
|
|
103
|
+
"vue-html-loader": "^1.0.0",
|
|
104
|
+
"vue-loader": "^8.2.1",
|
|
105
|
+
"vue-resource": "^1.5.0",
|
|
106
|
+
"vue-router": "^0.7.13",
|
|
107
|
+
"vue-strap": "^1.0.9",
|
|
108
|
+
"vue-style-loader": "^1.0.0",
|
|
109
|
+
"vue-validator": "^2.1.7",
|
|
110
|
+
"vux": "^2.9.4",
|
|
111
|
+
"webpack": "^1.12.2",
|
|
112
|
+
"webpack-dev-middleware": "^1.4.0",
|
|
113
|
+
"webpack-hot-middleware": "^2.6.0",
|
|
114
|
+
"webpack-merge": "^0.8.3",
|
|
115
|
+
"weixin-js-sdk": "^1.2.0",
|
|
116
|
+
"telephone-clients": "3.0.2-21-63"
|
|
117
|
+
}
|
|
118
|
+
}
|